Skip to content

Commit

Permalink
Run all of check-merges-reproducibility, not only until the first f… (
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst authored Jul 12, 2024
1 parent 6e92b59 commit 468ddc7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,13 @@ clean-local:
check-merges-reproducibility:
@echo "Running replay_merge sequentially for each idx..."
@set -e; \
FAILED_IDXES=""; \
for idx in $(shell tail -n +2 $(CSV_RESULTS) | awk -F, '{print $$1}'); do \
src/python/replay_merge.py --testing --merges_csv $(CSV_RESULTS) -skip_build -delete_workdir --idx $$idx; \
done
echo "Running replay_merge for idx $$idx"; \
src/python/replay_merge.py --testing --merges_csv $(CSV_RESULTS) -skip_build -delete_workdir --idx $$idx || FAILED_IDXES="$$FAILED_IDXES $$idx"; \
done; \
echo "$$FAILED_IDXES"; \
test -z "$$FAILED_IDXES"

protect-repos:
find repos -mindepth 1 -type d -exec chmod a-w {} +
Expand Down

0 comments on commit 468ddc7

Please sign in to comment.