Skip to content

Commit

Permalink
chore: upgrade nwaku to 0.29.0 (#2042)
Browse files Browse the repository at this point in the history
  • Loading branch information
danisharora099 authored Jun 20, 2024
1 parent 93e78c3 commit 42126a6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ jobs:
uses: ./.github/workflows/test-node.yml
secrets: inherit
with:
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.27.0' }}
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.29.0' }}
test_type: node
allure_reports: true

node_optional:
uses: ./.github/workflows/test-node.yml
with:
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.27.0' }}
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.29.0' }}
test_type: node-optional

node_with_nwaku_master:
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/src/lib/service_node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const WAKU_SERVICE_NODE_PARAMS =
const NODE_READY_LOG_LINE = "Node setup complete";

export const DOCKER_IMAGE_NAME =
process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.27.0";
process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.29.0";

const isGoWaku = DOCKER_IMAGE_NAME.includes("go-waku");

Expand Down
2 changes: 1 addition & 1 deletion packages/tests/src/run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { promisify } from "util";

const execAsync = promisify(exec);

const WAKUNODE_IMAGE = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.27.0";
const WAKUNODE_IMAGE = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.29.0";

async function main() {
try {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/src/sync-rln-tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ServiceNode } from "../dist/lib/service_node.js";

const execAsync = promisify(exec);

const WAKUNODE_IMAGE = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.27.0";
const WAKUNODE_IMAGE = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.29.0";
const containerName = "rln_tree";

async function syncRlnTree() {
Expand Down

0 comments on commit 42126a6

Please sign in to comment.