Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): another fix condition to run repeated CI tests #3583

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.ref == 'refs/heads/main') }}
if: ${{ (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.ref == 'refs/heads/main') }}
if: ${{ (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.ref == 'refs/heads/main') }}
if: ${{ (github.ref == 'refs/heads/main') }}
run: |
for i in {1..10}; do
echo "Iteration $i"
Expand Down
Loading