From 27ec0752f6e7bd0701a53ca0c631fc89df529a97 Mon Sep 17 00:00:00 2001 From: fbarbu15 Date: Tue, 12 Sep 2023 17:59:31 +0300 Subject: [PATCH] small fix after ci run --- .github/workflows/ci.yml | 4 ++-- .github/workflows/test-node.yml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b056f20118..6f95fc406c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,13 +84,13 @@ jobs: uses: ./.github/workflows/test-node.yml with: nim_wakunode_image: statusteam/go-waku:latest - test_type: go_waku_master + test_type: go-waku-master node_with_nwaku_master: uses: ./.github/workflows/test-node.yml with: nim_wakunode_image: statusteam/nim-waku:deploy-wakuv2-test - test_type: nwaku_master + test_type: nwaku-master maybe-release: name: release diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml index 858372329f..eba295b441 100644 --- a/.github/workflows/test-node.yml +++ b/.github/workflows/test-node.yml @@ -13,8 +13,7 @@ on: env: NODE_JS: "18" RETRY_ATTEMPTS: 3 - WAKU_SERVICE_NODE_PARAMS: ${{ (inputs.test_type == 'go_waku_master') && '--min-relay-peers-to-publish=0' || '' }} - DEBUG: ${{ (inputs.test_type == 'go_waku_master' || inputs.test_type == 'nwaku_master') && 'waku:nwaku*,waku:test*' || 'waku*' }} + WAKU_SERVICE_NODE_PARAMS: ${{ (inputs.test_type == 'go-waku-master') && '--min-relay-peers-to-publish=0' || '' }} jobs: node: @@ -37,9 +36,9 @@ jobs: - uses: Wandalen/wretry.action@master with: attempt_limit: ${{ env.RETRY_ATTEMPTS }} - command: ${{ (inputs.test_type == 'node_optional') && 'npm run test:optional --workspace=@waku/tests' || 'npm run test:node' }} + command: ${{ (inputs.test_type == 'node-optional') && 'npm run test:optional --workspace=@waku/tests' || 'npm run test:node' }} with: | - DEBUG: ${{ env.DEBUG }} + DEBUG: ${{ (inputs.test_type == 'go-waku-master' || inputs.test_type == 'nwaku-master') && '"waku:nwaku*,waku:test*"' || "" }} - name: Upload debug logs on failure uses: actions/upload-artifact@v3