File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -64,17 +64,21 @@ jobs:
6464 path : repo  #  Avoid nuking the workspace, where we have the Python virtualenv
6565
6666 - name : Run baseline 
67+  env :
68+  BENCHMARKS : ${{ steps.vars.outputs.benchmarks }} 
6769 run : | 
6870 source .venv/bin/activate && cd repo 
6971 python -m pip install -r libcxx/utils/requirements.txt 
7072 baseline_commit=$(git merge-base ${{ steps.vars.outputs.pr_base }} ${{ steps.vars.outputs.pr_head }}) 
71-  ./libcxx/utils/test-at-commit --commit ${baseline_commit} -B build/baseline -- -sv -j1 --param optimization=speed ${{ steps.vars.outputs.benchmarks }}  
73+  ./libcxx/utils/test-at-commit --commit ${baseline_commit} -B build/baseline -- -sv -j1 --param optimization=speed "$BENCHMARKS"  
7274 ./libcxx/utils/consolidate-benchmarks build/baseline | tee baseline.lnt 
7375
7476name : Run candidate 
77+  env :
78+  BENCHMARKS : ${{ steps.vars.outputs.benchmarks }} 
7579 run : | 
7680 source .venv/bin/activate && cd repo 
77-  ./libcxx/utils/test-at-commit --commit ${{ steps.vars.outputs.pr_head }} -B build/candidate -- -sv -j1 --param optimization=speed ${{ steps.vars.outputs.benchmarks }}  
81+  ./libcxx/utils/test-at-commit --commit ${{ steps.vars.outputs.pr_head }} -B build/candidate -- -sv -j1 --param optimization=speed "$BENCHMARKS"  
7882 ./libcxx/utils/consolidate-benchmarks build/candidate | tee candidate.lnt 
7983
8084name : Compare baseline and candidate runs 
                         You can’t perform that action at this time. 
           
                  
0 commit comments