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

Temporarily disable RISC0 in the CI #3365

Merged
merged 2 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,12 @@ jobs:
toolchain: 1.81.0
cache-on-failure: false

- name: Install RISC0 VM
shell: bash
run: |
curl -L https://risczero.com/install | bash
~/.risc0/bin/rzup install
~/.risc0/bin/rzup install r0vm 1.2.4
# - name: Install RISC0 VM
# shell: bash
# run: |
# curl -L https://risczero.com/install | bash
# ~/.risc0/bin/rzup install
# ~/.risc0/bin/rzup install r0vm 1.2.4

- name: Checkout CairoVM
uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions test/Rust.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ module Rust where

import Base
import Rust.Compilation qualified as Compilation
import Rust.RiscZero qualified as RiscZero

allTests :: IO TestTree
allTests =
sequentialTestGroup "Juvix to Rust tests" AllFinish
<$> sequence [Compilation.allTests, RiscZero.allTests]
<$> sequence [Compilation.allTests]
Loading