Skip to content

Commit

Permalink
chore: upgrade nwaku to v0.26 (#1906)
Browse files Browse the repository at this point in the history
* chore: upgrade to v0.26

* skip TWN tests
  • Loading branch information
danisharora099 authored Mar 13, 2024
1 parent 877fe1d commit 639da72
Show file tree
Hide file tree
Showing 4 changed files with 6 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 @@ -72,14 +72,14 @@ jobs:
uses: ./.github/workflows/test-node.yml
secrets: inherit
with:
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.25.0' }}
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.26.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.25.0' }}
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.26.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.25.0";
process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.26.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.25.0";
const WAKUNODE_IMAGE = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.26.0";

async function main() {
try {
Expand Down
3 changes: 2 additions & 1 deletion packages/tests/tests/sdk/content_topic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import { expect } from "chai";

import { makeLogFileName, ServiceNode, tearDownNodes } from "../../src";

describe("SDK: Creating by Content Topic", function () {
// skipped: https://github.com/waku-org/js-waku/issues/1914
describe.skip("SDK: Creating by Content Topic", function () {
const ContentTopic = "/myapp/1/latest/proto";
const testMessage = "Test123";
let nwaku: ServiceNode;
Expand Down

0 comments on commit 639da72

Please sign in to comment.