Skip to content

Commit 89c5f1f

Browse files
committed
fixes
1 parent 62bca4b commit 89c5f1f

8 files changed

+13
-13
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
enable-cache: true
2626
- name: Install python deps
27-
run: make ci-python-deps && . cairo-vm-env/bin/activate
27+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
2828
- name: Run benchmark
2929
run: make benchmark-action
3030
- name: Store benchmark result

.github/workflows/cairo_1_programs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
enable-cache: true
2424
- name: install corelib
25-
run: cd cairo1-run/ && make deps
25+
run: cd cairo1-run/ && make deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
2626
- name: Run tests
2727
run: cd cairo1-run/ && make test
2828
- name: Run cairo 1 programs

.github/workflows/fresh_run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Run make deps${{ matrix.deps_suffix }}
5353
id: deps
54-
run: make deps${{ matrix.deps_suffix }}
54+
run: make deps${{ matrix.deps_suffix }} && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
5555

5656
- name: Run make build
5757
id: build

.github/workflows/hyper_threading_benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
enable-cache: true
2121
- name: Install python deps
22-
run: make ci-python-deps && . cairo-vm-env/bin/activate
22+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
2323

2424
- name: Install Dependencies
2525
run: |

.github/workflows/hyperfine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ 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
45+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
4646

4747
- name: Build programs
4848
if: ${{ steps.cache.outputs.cache-hit != 'true' }}

.github/workflows/iai_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
enable-cache: true
2121
- name: Install python deps
22-
run: make ci-python-deps && . cairo-vm-env/bin/activate
22+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
2323
- name: Install test dependencies
2424
run: |
2525
sudo apt update

.github/workflows/iai_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
enable-cache: true
6666
- name: Install python deps
67-
run: make ci-python-deps && . cairo-vm-env/bin/activate
67+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
6868
- name: Install test dependencies
6969
run: |
7070
sudo apt update

.github/workflows/rust.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
if: steps.cache-programs.outputs.cache-hit != 'true'
8787
&& matrix.program-target != 'cairo_1_test_contracts'
8888
&& matrix.program-target != 'cairo_2_test_contracts'
89-
run: make ci-python-deps && . cairo-vm-env/bin/activate
89+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
9090

9191
- name: Install cairo 1 compiler
9292
if: steps.cache-programs.outputs.cache-hit != 'true' && matrix.program-target == 'cairo_1_test_contracts'
@@ -456,7 +456,7 @@ jobs:
456456
enable-cache: true
457457
- name: Install python deps
458458
if: steps.trace-cache.outputs.cache-hit != 'true'
459-
run: make ci-python-deps && . cairo-vm-env/bin/activate
459+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
460460

461461
- name: Fetch programs
462462
if: steps.trace-cache.outputs.cache-hit != 'true'
@@ -711,7 +711,7 @@ jobs:
711711
with:
712712
enable-cache: true
713713
- name: Install python deps
714-
run: make ci-python-deps && . cairo-vm-env/bin/activate
714+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
715715

716716
- name: Install cairo-lang and deps
717717
run: |
@@ -736,7 +736,7 @@ jobs:
736736
with:
737737
enable-cache: true
738738
- name: Install python deps
739-
run: make ci-python-deps && . cairo-vm-env/bin/activate
739+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
740740

741741
- name: Fetch release binary
742742
uses: actions/cache/restore@v3
@@ -773,7 +773,7 @@ jobs:
773773
with:
774774
enable-cache: true
775775
- name: Install python deps
776-
run: make ci-python-deps && . cairo-vm-env/bin/activate
776+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
777777

778778
- name: Fetch release binary
779779
uses: actions/cache/restore@v3
@@ -822,7 +822,7 @@ jobs:
822822
with:
823823
enable-cache: true
824824
- name: Install python deps
825-
run: make ci-python-deps && . cairo-vm-env/bin/activate
825+
run: make ci-python-deps && . cairo-vm-env/bin/activate && echo PATH=$PATH >> $GITHUB_ENV
826826

827827
- name: Fetch release binary
828828
uses: actions/cache/restore@v3

0 commit comments

Comments
 (0)