From cdc9a668ebf535ee0d833698be5bffead2567eeb Mon Sep 17 00:00:00 2001 From: Benedikt Schesch Date: Sat, 4 May 2024 23:09:43 -0700 Subject: [PATCH] Fail fast to false --- .github/workflows/check-reproducibility.yml | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-reproducibility.yml b/.github/workflows/check-reproducibility.yml index 5d797b3eff..dc7b108307 100644 --- a/.github/workflows/check-reproducibility.yml +++ b/.github/workflows/check-reproducibility.yml @@ -3,6 +3,7 @@ on: [push, pull_request] jobs: test: strategy: + fail-fast: false matrix: maven: [ '3.9.2' ] runs-on: ubuntu-latest diff --git a/Makefile b/Makefile index fbd06df679..bfe6bb8ca8 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ clean-local: check-merges-reproducibility: @echo "Running replay_merge for each idx in parallel..." - @tail -n +2 $(CSV_RESULTS) | awk -F, '{print $$1}' | parallel --progress --bar -u --halt now,fail=1 -j 0 'python3 src/python/replay_merge.py -delete_workdir --idx {}' + @tail -n +2 $(CSV_RESULTS) | awk -F, '{print $$1}' | parallel --progress --bar -u --halt now,fail=1 -j 0 'python3 src/python/replay_merge.py --merges_csv $(CSV_RESULTS) -delete_workdir --idx {}' protect-repos: find repos -mindepth 1 -type d -exec chmod a-w {} +