mirror of https://github.com/status-im/js-waku.git
chore: bump nwaku version to 0.20 (#1591)
This commit is contained in:
parent
020463c358
commit
9ab4e86f19
|
@ -10,7 +10,7 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
nim_wakunode_image:
|
nim_wakunode_image:
|
||||||
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.19.0"
|
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.20.0"
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
|
@ -70,13 +70,13 @@ jobs:
|
||||||
node:
|
node:
|
||||||
uses: ./.github/workflows/test-node.yml
|
uses: ./.github/workflows/test-node.yml
|
||||||
with:
|
with:
|
||||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
|
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.20.0' }}
|
||||||
test_type: node
|
test_type: node
|
||||||
|
|
||||||
node_optional:
|
node_optional:
|
||||||
uses: ./.github/workflows/test-node.yml
|
uses: ./.github/workflows/test-node.yml
|
||||||
with:
|
with:
|
||||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
|
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.20.0' }}
|
||||||
test_type: node-optional
|
test_type: node-optional
|
||||||
|
|
||||||
node_with_go_waku_master:
|
node_with_go_waku_master:
|
||||||
|
|
|
@ -28,7 +28,7 @@ const WAKU_SERVICE_NODE_PARAMS =
|
||||||
const NODE_READY_LOG_LINE = "Node setup complete";
|
const NODE_READY_LOG_LINE = "Node setup complete";
|
||||||
|
|
||||||
const DOCKER_IMAGE_NAME =
|
const DOCKER_IMAGE_NAME =
|
||||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.19.0";
|
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.20.0";
|
||||||
|
|
||||||
const isGoWaku = DOCKER_IMAGE_NAME.includes("go-waku");
|
const isGoWaku = DOCKER_IMAGE_NAME.includes("go-waku");
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { promisify } from "util";
|
||||||
const execAsync = promisify(exec);
|
const execAsync = promisify(exec);
|
||||||
|
|
||||||
const WAKUNODE_IMAGE =
|
const WAKUNODE_IMAGE =
|
||||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.19.0";
|
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.20.0";
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue