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 dcc9672 commit 900f6b5Copy full SHA for 900f6b5
.github/workflows/libcxx-build-and-test.yaml
@@ -293,9 +293,12 @@ jobs:
293
with:
294
fetch-depth: 0 # This job requires access to all the Git branches so it can diff against (usually) main
295
fetch-tags: true
296
- # ref: main
297
- name: benchmarks
298
- run: libcxx/utils/ci/run-buildbot benchmark-comparison
+ run: |
+ python3 -m venv .venv
299
+ source .venv/bin/activate
300
+ python -m pip install -r libcxx/utils/requirements.txt
301
+ libcxx/utils/ci/run-buildbot benchmark-comparison
302
env:
303
CC: clang-22
304
CXX: clang++-22
0 commit comments