Skip to content

Commit

Permalink
Seqeuntial processing
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedikt Schesch committed May 5, 2024
1 parent 21ea90a commit 13ba984
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/check-reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
maven: [ '3.9.2' ]
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ 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 $(NUM_PROCESSES) 'python3 src/python/replay_merge.py --merges_csv $(CSV_RESULTS) -delete_workdir --idx {}'

@tail -n +2 $(CSV_RESULTS) | awk -F, '{print $$1}' | while read idx; do \
python3 src/python/replay_merge.py --merges_csv $$(CSV_RESULTS) --delete_workdir --idx $$idx; \
done
protect-repos:
find repos -mindepth 1 -type d -exec chmod a-w {} +

Expand Down

0 comments on commit 13ba984

Please sign in to comment.