Skip to content

Commit

Permalink
Update System Test Action for changes to Benchmarking Repository
Browse files Browse the repository at this point in the history
The repository does not anymore have more complex inputs as submodules
inside of the benchmarks folder.
  • Loading branch information
SSoelvsten committed Nov 25, 2023
1 parent 9f35052 commit be372e0
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/system_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ jobs:

steps:
- name: Git | checkout SSoelvsten/BDD-Benchmark
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: 'ssoelvsten/bdd-benchmark'
submodules: 'recursive'
fetch-depth: '0'

- name: Git | checkout pull request
run: |
cd external/adiar
Expand Down Expand Up @@ -111,12 +112,19 @@ jobs:
order: 'INPUT'

steps:
- name: Git | checkout SSoelvsten/BDD-Benchmark
uses: actions/checkout@v2
- name: Git | checkout ssoelvsten/bdd-benchmark
uses: actions/checkout@v4
with:
repository: 'ssoelvsten/bdd-benchmark'
submodules: 'recursive'
fetch-depth: '0'

- name: Git | checkout lsils/benchmarks
uses: actions/checkout@v4
with:
path: epfl
repository: 'lsils/benchmarks'

- name: Git | checkout pull request
run: |
cd external/adiar
Expand All @@ -140,8 +148,8 @@ jobs:
- name: Run Benchmarks
run: |
for spec in ${{ matrix.circuits }} ; do \
for opt in benchmarks/epfl/best_results/**/$spec* ; do \
build/src/adiar_picotrav_bdd -f benchmarks/epfl/${{ matrix.name }}/$spec.blif -f $opt -o ${{ matrix.order }} -M 1024 ; \
for opt in epfl/best_results/**/$spec* ; do \
build/src/adiar_picotrav_bdd -f epfl/${{ matrix.name }}/$spec.blif -f $opt -o ${{ matrix.order }} -M 1024 ; \
done ; \
done
Expand Down

0 comments on commit be372e0

Please sign in to comment.