Skip to content

Commit

Permalink
Skip build speedup
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch committed May 10, 2024
1 parent ccefe6e commit 814d57d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
- name: Clean caches & workspace
run: make clean
- run: echo "LOGURU_COLORIZE=NO" >> $GITHUB_ENV
- name: Build
run: cd src/scripts/merge_tools/merging && ./gradlew -q shadowJar
- name: make check-merges-reproducibility
run: |
git config --global user.email "[email protected]"
git config --global user.name "Example Example"
head -n 151 results/combined/result.csv > temp.csv && mv temp.csv results/combined/result.csv
make check-merges-reproducibility
env:
Expand Down
3 changes: 2 additions & 1 deletion src/python/replay_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ def merge_replay(
os.getcwd(), "src/scripts/merge_tools"
)
os.environ["GIT_CONFIG_GLOBAL"] = os.getcwd() + "/.gitconfig"
os.system("cd src/scripts/merge_tools/merging && ./gradlew -q shadowJar")
if not args.skip_build:
os.system("cd src/scripts/merge_tools/merging && ./gradlew -q shadowJar")
os.system("git submodule update --init")

df = pd.read_csv(args.merges_csv, index_col="idx")
Expand Down

0 comments on commit 814d57d

Please sign in to comment.