File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -67,17 +67,18 @@ jobs:
67
67
python -m pip install -r libcxx/utils/requirements.txt
68
68
baseline_commit=$(git merge-base ${{ steps.vars.outputs.pr_base }} ${{ steps.vars.outputs.pr_head }})
69
69
./libcxx/utils/test-at-commit --commit ${baseline_commit} -B build/baseline -- -sv -j1 --param optimization=speed ${{ steps.vars.outputs.benchmarks }}
70
+ ./libcxx/utils/consolidate-benchmarks build/baseline | tee baseline.lnt
70
71
71
72
- name : Run candidate
72
73
run : |
73
74
source .venv/bin/activate && cd repo
74
75
./libcxx/utils/test-at-commit --commit ${{ steps.vars.outputs.pr_head }} -B build/candidate -- -sv -j1 --param optimization=speed ${{ steps.vars.outputs.benchmarks }}
76
+ ./libcxx/utils/consolidate-benchmarks build/candidate | tee candidate.lnt
75
77
76
78
- name : Compare baseline and candidate runs
77
79
run : |
78
80
source .venv/bin/activate && cd repo
79
- ./libcxx/utils/compare-benchmarks <(./libcxx/utils/consolidate-benchmarks build/baseline) \
80
- <(./libcxx/utils/consolidate-benchmarks build/candidate) | tee results.txt
81
+ ./libcxx/utils/compare-benchmarks baseline.lnt candidate.lnt | tee results.txt
81
82
82
83
- name : Update comment with results
83
84
run : |
You can’t perform that action at this time.
0 commit comments