Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
46 changes: 46 additions & 0 deletions .github/workflows/riscV.yml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you make the V lowercase in the file and in the file name

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this files name still has a uppercase V

Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Riscv
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Riscv
name: RISC-V


on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build-sp1:
runs-on: ubuntu-latest
needs: [cargo-fmt, cargo-clippy]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like the risc CI's are now not running?

trying removing the needs lines for both of them. I am guessing it is due to these jobs not being in the same file node


steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install toolchain
run: |
curl -L https://sp1up.succinct.xyz | bash
/home/runner/.sp1/bin/sp1up
rustup default succinct

- name: Build SP1
run: cargo build --target=riscv32im-succinct-zkvm-elf -p ream-consensus -p ream-bls

build-risc0:
runs-on: ubuntu-latest
needs: [cargo-fmt, cargo-clippy]

steps:
- uses: actions/checkout@v4

- name: Install toolchain
run: |
curl -L https://risczero.com/install | bash
/home/runner/.risc0/bin/rzup install
cargo risczero install
rustup default risc0

- name: Build Risc0
run: cargo build --target=riscv32im-risc0-zkvm-elf -p ream-consensus -p ream-bls

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing a new line here
image

17 changes: 0 additions & 17 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,6 @@ env:
CARGO_TERM_COLOR: always

jobs:
build-risc0:
runs-on: ubuntu-latest
needs: [cargo-fmt, cargo-clippy]

steps:
- uses: actions/checkout@v4

- name: Install toolchain
run: |
curl -L https://risczero.com/install | bash
/home/runner/.risc0/bin/rzup install
cargo risczero install
rustup default risc0

- name: Build Risc0
run: cargo build --target=riscv32im-risc0-zkvm-elf -p ream-consensus -p ream-bls

cargo-fmt:
runs-on: ubuntu-latest

Expand Down