diff --git a/.github/workflows/cd-deploy-nodes-gcp.yml b/.github/workflows/cd-deploy-nodes-gcp.yml index 75078d19192..8310427bfe9 100644 --- a/.github/workflows/cd-deploy-nodes-gcp.yml +++ b/.github/workflows/cd-deploy-nodes-gcp.yml @@ -104,7 +104,7 @@ jobs: needs: build steps: - name: Test Zebra with default config file - uses: ./.github/workflows/test-zebra-config-files.yml + uses: ./.github/workflows/sub-test-zebra-config.yml with: test_id: 'default-conf-tests' test_description: 'Test Zebra default Docker config file' @@ -121,7 +121,7 @@ jobs: steps: # Make sure Zebra can sync the genesis block on testnet - name: Test Zebra with Testnet config file - uses: ./.github/workflows/test-zebra-config-files.yml + uses: ./.github/workflows/sub-test-zebra-config.yml with: test_id: 'testnet-conf-tests' test_description: 'Test Zebra testnet Docker config file' @@ -137,7 +137,7 @@ jobs: needs: build steps: - name: Test Zebra with $ZEBRA_CONF_PATH config file - uses: ./.github/workflows/test-zebra-config-files.yml + uses: ./.github/workflows/sub-test-zebra-config.yml with: test_id: 'variable-conf-tests' test_description: 'Test Zebra custom Docker config file' diff --git a/.github/workflows/ci-unit-tests-docker.yml b/.github/workflows/ci-unit-tests-docker.yml index 83563398537..ac7ba27aa8d 100644 --- a/.github/workflows/ci-unit-tests-docker.yml +++ b/.github/workflows/ci-unit-tests-docker.yml @@ -215,7 +215,7 @@ jobs: needs: build steps: - name: Test Zebra with default config file - uses: ./.github/workflows/test-zebra-config-files.yml + uses: ./.github/workflows/sub-test-zebra-config.yml with: test_id: 'default-conf-tests' test_description: 'Test Zebra default Docker config file' @@ -232,7 +232,7 @@ jobs: steps: # Make sure Zebra can sync the genesis block on testnet - name: Test Zebra with Testnet config file - uses: ./.github/workflows/test-zebra-config-files.yml + uses: ./.github/workflows/sub-test-zebra-config.yml with: test_id: 'testnet-conf-tests' test_description: 'Test Zebra testnet Docker config file' @@ -248,7 +248,7 @@ jobs: needs: build steps: - name: Test Zebra with $ZEBRA_CONF_PATH config file - uses: ./.github/workflows/test-zebra-config-files.yml + uses: ./.github/workflows/sub-test-zebra-config.yml with: test_id: 'variable-conf-tests' test_description: 'Test Zebra custom Docker config file'