Skip to content

Commit

Permalink
fix of repeat tests condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tomg10 committed Feb 7, 2025
1 parent a171433 commit be5658e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.event_name == 'push' && github.ref == 'refs/heads/main') }}
if: ${{ (steps.condition.outputs.should_run == 'true' && github.ref == 'refs/heads/main') }}
run: |
for i in {1..10}; do
echo "Iteration $i"
Expand Down Expand Up @@ -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.event_name == 'push' && github.ref == 'refs/heads/main') }}
if: ${{ (steps.condition.outputs.should_run == 'true' && github.ref == 'refs/heads/main') }}
run: |
for i in {1..10}; do
echo "Iteration $i"
Expand All @@ -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.event_name == 'push' && github.ref == 'refs/heads/main') }}
if: ${{ (steps.condition.outputs.should_run == 'true' && github.ref == 'refs/heads/main') }}
run: |
for i in {1..10}; do
echo "Iteration $i"
Expand Down

0 comments on commit be5658e

Please sign in to comment.