Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Rust toolchain caching #2825

Merged
merged 4 commits into from
Jun 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading