Skip to content

Commit

Permalink
adapt path script
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoGiachetta committed Oct 21, 2024
1 parent 9b75a07 commit aea6a54
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/starknet-blocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ jobs:
run: cargo b --release --all-features
- name: Build runtime
if: ${{ matrix.runner == 'native' }}
run: make runtime-ci
run: |
make runtime-ci
cargo update
- name: Upload runtime library
if: ${{ matrix.runner == 'native' }}
Expand All @@ -86,7 +88,7 @@ jobs:
- name: Patch Cairo Native's version
if: ${{ matrix.runner == 'native' }}
run: |
sed -r -i "" "s/cairo_native.*rev.*[0-9a-z]+./cairo_native.git', rev = '${{ github.event.pull_request.head.sha }}'/" Cargo.toml
sed -r -i "s/cairo_native.*rev.*[0-9a-z]+./cairo_native.git', rev = '${{ github.event.pull_request.head.sha }}'/" Cargo.toml
cargo update
- name: Fetch runtime library
Expand Down

0 comments on commit aea6a54

Please sign in to comment.