Skip to content

Commit eeae900

Browse files
committed
fix
1 parent 78d3401 commit eeae900

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/hyper_threading_benchmarks.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ jobs:
1919
with:
2020
enable-cache: true
2121
- name: Install python deps
22-
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
22+
run: |
23+
uv python install 3.9.15
24+
uv venv --python 3.9.15 cairo-vm-env
25+
. cairo-vm-env/bin/activate
26+
uv pip install -r requirements.txt
27+
echo PATH=$PATH >> $GITHUB_ENV
2328
2429
- name: Install Dependencies
2530
run: |

.github/workflows/hyperfine.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ jobs:
4242
enable-cache: true
4343
- name: Install python deps
4444
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
45-
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
45+
run: |
46+
uv python install 3.9.15
47+
uv venv --python 3.9.15 cairo-vm-env
48+
. cairo-vm-env/bin/activate
49+
uv pip install -r requirements.txt
50+
echo PATH=$PATH >> $GITHUB_ENV
4651
4752
- name: Build programs
4853
if: ${{ steps.cache.outputs.cache-hit != 'true' }}

0 commit comments

Comments
 (0)