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 {} +