feat(raiko): load program from elf for risc zero #761
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-test: | |
name: Build and test native | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
env: | |
TARGET: native | |
CI: 1 | |
MOCK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-04-17 | |
profile: minimal | |
- name: Install cargo-binstall | |
uses: cargo-bins/[email protected] | |
- name: Install native | |
run: make install | |
- name: Build native prover | |
run: make build | |
- name: Test native prover | |
run: make test | |
- name: Build with tracer | |
run: cargo build --features tracer | |
build-test-risc0: | |
name: Build and test risc0 | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
env: | |
TARGET: risc0 | |
CI: 1 | |
MOCK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
- name: Install cargo-binstall | |
uses: cargo-bins/[email protected] | |
- uses: risc0/risc0/.github/actions/[email protected] | |
- name: Install risc0 | |
run: make install | |
- name: Build risc0 prover | |
run: make build | |
- name: Test risc0 prover | |
run: make test | |
build-test-sp1: | |
name: Build and test sp1 | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
env: | |
TARGET: sp1 | |
CI: 1 | |
MOCK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-04-17 | |
profile: minimal | |
- name: Install cargo-binstall | |
uses: cargo-bins/[email protected] | |
- name: Install sp1 | |
run: make install | |
- name: Build sp1 prover | |
run: make build | |
- name: Test sp1 prover | |
run: make test | |
build-test-sgx: | |
name: Build and test sgx | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
env: | |
TARGET: sgx | |
CI: 1 | |
MOCK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
- name: Install cargo-binstall | |
uses: cargo-bins/[email protected] | |
- name: Install sgx | |
run: make install | |
- name: Build sgx prover | |
run: make build | |
- name: Test sgx prover | |
run: make test | |
build-test-sgx-hardware: | |
name: Build and test sgx in hardware | |
runs-on: [self-hosted, sgx, linux] | |
timeout-minutes: 120 | |
env: | |
TARGET: sgx | |
CI: 1 | |
EDMM: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
- name: Install cargo-binstall | |
uses: cargo-bins/[email protected] | |
- name: Install sgx | |
run: make install | |
- name: Build sgx prover | |
run: make build | |
- name: Test sgx prover | |
run: make test | |
build-test-sgx-with-docker: | |
name: Build and test sgx with Docker | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup and build | |
run: | | |
cd docker | |
docker compose build --no-cache | |
shell: bash | |
test-lib: | |
name: Test raiko-lib | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- run: cargo test -p raiko-lib --features=std | |
clippy: | |
name: clippy | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: risc0/risc0/.github/actions/[email protected] | |
- uses: risc0/risc0/.github/actions/[email protected] | |
- uses: risc0/clippy-action@main | |
with: | |
reporter: 'github-pr-check' | |
fail_on_error: true | |
clippy_flags: --workspace --all-targets --all-features -- -Dwarnings | |
fmt: | |
name: fmt | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: risc0/risc0/.github/actions/[email protected] | |
- run: make fmt |