-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ddb926
commit 6d30c0a
Showing
425 changed files
with
4,400 additions
and
4,293 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
.github/workflows/check-reproducibility-inconsistent-results.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Reproducibility Check | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
maven: [ '3.9.2' ] | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 17.0.7 | ||
- run: echo "JAVA17_HOME=$JAVA_HOME" >> $GITHUB_ENV | ||
- run: java -version | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
- name: Setup miniconda | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
python-version: 3.12 | ||
auto-update-conda: true | ||
mamba-version: "*" | ||
channels: conda-forge,defaults | ||
activate-environment: AST | ||
environment-file: environment.yml | ||
- 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: | | ||
python3 src/python/utils/build_inconsistent_merges.py | ||
head -n 151 results/combined/result.csv > temp.csv && mv temp.csv results/combined/result.csv | ||
make CSV_RESULTS=results/combined/inconsistent_results.csv check-merges-reproducibility | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }} |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.