Skip to content

Commit 900f6b5

Browse files
committed
Install python requirements'
1 parent dcc9672 commit 900f6b5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/libcxx-build-and-test.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,12 @@ jobs:
293293
with:
294294
fetch-depth: 0 # This job requires access to all the Git branches so it can diff against (usually) main
295295
fetch-tags: true
296-
# ref: main
297296
- name: benchmarks
298-
run: libcxx/utils/ci/run-buildbot benchmark-comparison
297+
run: |
298+
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
299302
env:
300303
CC: clang-22
301304
CXX: clang++-22

0 commit comments

Comments
 (0)