From 4f2b88bb3164bddbe756db292bde79e37d04c52c Mon Sep 17 00:00:00 2001 From: John Guibas Date: Wed, 24 Jan 2024 23:09:22 -0800 Subject: [PATCH] fix: risc0 --- .github/workflows/ci.yml | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29b1bc2548c6..70da612190d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,20 +10,7 @@ on: jobs: build: - strategy: - fail-fast: false - matrix: - include: - - os: macOS - arch: ARM64 - triple: aarch64-apple-darwin - - os: macOS - arch: X64 - triple: x86_64-apple-darwin - - os: Linux - arch: X64 - triple: x86_64-unknown-linux-gnu - runs-on: [ self-hosted, prod, "${{ matrix.os }}", "${{ matrix.arch }}" ] + runs-on: buildjet-32vcpu-ubuntu-2204 steps: - name: Install Rust uses: risc0/actions-rs-toolchain@v1 @@ -54,6 +41,6 @@ jobs: with: name: rust-toolchain-${{ matrix.triple }} path: | - rust/build/${{ matrix.triple }}/stage2 - !rust/build/${{ matrix.triple }}/stage2/lib/rustlib/src - !rust/build/${{ matrix.triple }}/stage2/lib/rustlib/rustc-src + rust/build/x86_64-unknown-linux-gnu/stage2 + !rust/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/src + !rust/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/rustc-src