We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e65bb86 commit b679615Copy full SHA for b679615
.github/workflows/perf.yml
@@ -52,8 +52,9 @@ jobs:
52
53
- name: Diff from master - gbench
54
run: |
55
- pip3 install -r google-benchmark/tools/requirements.txt
56
- python3 google-benchmark/tools/compare.py --no-color benchmarks gbench_data.json ${{ steps.perf.outputs.gbench_json }} &> gbench_diff.txt
+ python3 -m venv .venv
+ ./.venv/bin/python -m pip install -r google-benchmark/tools/requirements.txt
57
+ ./.venv/bin/python google-benchmark/tools/compare.py --no-color benchmarks gbench_data.json "${{ steps.perf.outputs.gbench_json }}" &> gbench_diff.txt
58
59
- name: Archive perf diff
60
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
0 commit comments