From 0683de5c2a3d7c7f481e80e3f06309a19d4a673f Mon Sep 17 00:00:00 2001 From: tomg10 Date: Fri, 7 Feb 2025 18:05:59 +0100 Subject: [PATCH] fix --- .github/workflows/ci-core-reusable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-core-reusable.yml b/.github/workflows/ci-core-reusable.yml index 803406f3b5e3..a512f42f6008 100644 --- a/.github/workflows/ci-core-reusable.yml +++ b/.github/workflows/ci-core-reusable.yml @@ -463,7 +463,7 @@ jobs: ci_run ./bin/run_on_all_chains.sh "zkstack dev test integration --no-deps --ignore-prerequisites" ${{ env.CHAINS }} ${{ env.INTEGRATION_TESTS_LOGS_DIR }} - name: Repeat integration tests on push to main to check for flakiness - if: ${{ (steps.condition.outputs.should_run == 'true' && github.ref == 'refs/heads/main') }} + if: ${{ (github.ref == 'refs/heads/main') }} run: | for i in {1..10}; do echo "Iteration $i" @@ -516,7 +516,7 @@ jobs: ci_run ./bin/run_on_all_chains.sh "zkstack dev test integration --no-deps --ignore-prerequisites --external-node" ${{ env.CHAINS }} ${{ env.INTEGRATION_TESTS_LOGS_DIR }} - name: Repeat integration tests en on push to main to check for flakiness - if: ${{ (steps.condition.outputs.should_run == 'true' && github.ref == 'refs/heads/main') }} + if: ${{ (github.ref == 'refs/heads/main') }} run: | for i in {1..10}; do echo "Iteration $i" @@ -538,7 +538,7 @@ jobs: ci_run ./bin/run_on_all_chains.sh "zkstack dev test fees --no-deps --no-kill" ${{ env.CHAINS }} ${{ env.FEES_LOGS_DIR }} - name: Repeat fee projection tests on push to main to check for flakiness - if: ${{ (steps.condition.outputs.should_run == 'true' && github.ref == 'refs/heads/main') }} + if: ${{ (github.ref == 'refs/heads/main') }} run: | for i in {1..10}; do echo "Iteration $i"