Skip to content

Commit

Permalink
Fix Rust toolchain caching (#2825)
Browse files Browse the repository at this point in the history
Fixes the error in the Rust toolchain caching by setting
`cache-on-failure` to false for the `setup-rust-toolchain` action.
  • Loading branch information
lukaszcz authored Jun 13, 2024
1 parent 8410153 commit e2a6344
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,14 @@ jobs:
- name: Install Rust toolchain
if: steps.cache-cairo-vm.outputs.cache-hit != 'true'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache-on-failure: false

- name: Install RISC0 VM
shell: bash
run: |
cargo install cargo-binstall
cargo binstall cargo-risczero@1.0.1 --no-confirm
cargo install cargo-binstall --force
cargo binstall cargo-risczero@1.0.1 --no-confirm --force
cargo risczero install
- name: Checkout CairoVM
Expand Down

0 comments on commit e2a6344

Please sign in to comment.