Skip to content

Commit

Permalink
Simplify benchcomp configuration with new variables feature
Browse files Browse the repository at this point in the history
With model-checking/kani#3090 we can use
variables and don't need to hack the PATH configuration into the command
line.
  • Loading branch information
tautschnig committed Mar 22, 2024
1 parent 5453654 commit b8f78a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/performance/benchcomp-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
variants:
aws-c-common@old:
config:
command_line: cd verification/cbmc/proofs && export PATH=/home/runner/work/cbmc/cbmc/old/build/bin:$PATH &&
./run-cbmc-proofs.py
command_line: cd verification/cbmc/proofs && ./run-cbmc-proofs.py
directory: /home/runner/work/cbmc/cbmc/aws-c-common.git
env: {}
env:
PATH: /home/runner/work/cbmc/cbmc/old/build/bin:${PATH}
aws-c-common@new:
config:
command_line: cd verification/cbmc/proofs && export PATH=/home/runner/work/cbmc/cbmc/new/build/bin:$PATH &&
./run-cbmc-proofs.py
command_line: cd verification/cbmc/proofs && ./run-cbmc-proofs.py
directory: /home/runner/work/cbmc/cbmc/aws-c-common.git
env: {}
env:
PATH: /home/runner/work/cbmc/cbmc/new/build/bin:${PATH}

run:
suites:
Expand Down

0 comments on commit b8f78a0

Please sign in to comment.