Skip to content

Commit b8f78a0

Browse files
committed
Simplify benchcomp configuration with new variables feature
With model-checking/kani#3090 we can use variables and don't need to hack the PATH configuration into the command line.
1 parent 5453654 commit b8f78a0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/performance/benchcomp-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
variants:
1111
aws-c-common@old:
1212
config:
13-
command_line: cd verification/cbmc/proofs && export PATH=/home/runner/work/cbmc/cbmc/old/build/bin:$PATH &&
14-
./run-cbmc-proofs.py
13+
command_line: cd verification/cbmc/proofs && ./run-cbmc-proofs.py
1514
directory: /home/runner/work/cbmc/cbmc/aws-c-common.git
16-
env: {}
15+
env:
16+
PATH: /home/runner/work/cbmc/cbmc/old/build/bin:${PATH}
1717
aws-c-common@new:
1818
config:
19-
command_line: cd verification/cbmc/proofs && export PATH=/home/runner/work/cbmc/cbmc/new/build/bin:$PATH &&
20-
./run-cbmc-proofs.py
19+
command_line: cd verification/cbmc/proofs && ./run-cbmc-proofs.py
2120
directory: /home/runner/work/cbmc/cbmc/aws-c-common.git
22-
env: {}
21+
env:
22+
PATH: /home/runner/work/cbmc/cbmc/new/build/bin:${PATH}
2323

2424
run:
2525
suites:

0 commit comments

Comments
 (0)