update path before clone repo and fast create pccs config file #608
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 }} | |
RISC0_VERSION: 0.20.1 | |
RISC0_TOOLCHAIN_VERSION: test-release-2 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-test-risc0: | |
name: Build and test risc0 | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- run: scripts/toolchain-before.sh risc0 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- run: scripts/toolchain-after.sh risc0 | |
- uses: risc0/risc0/.github/actions/[email protected] | |
- name: Install cargo-binstall | |
uses: cargo-bins/[email protected] | |
- name: Install cargo-risczero | |
run: | | |
cargo binstall -y --force cargo-risczero | |
cargo risczero install | |
- name: Build risc0 guest target | |
run: cargo run --bin risc0-builder | |
- name: Build risc0 prover | |
run: cargo build --release --features risc0 | |
- name: Test risc0 prover | |
run: cargo test -p risc0-driver --features enable | |
build-test-sp1: | |
name: Build and test sp1 | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: scripts/toolchain-before.sh sp1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- run: scripts/toolchain-after.sh sp1 | |
- name: Install sp1 | |
run: | | |
curl -L https://sp1.succinct.xyz | bash | |
echo "/home/runner/.config/.sp1/bin" >> $GITHUB_PATH | |
/home/runner/.config/.sp1/bin/sp1up | |
- name: Build sp1 guest target | |
run: cargo run --bin sp1-builder | |
- name: Build sp1 prover | |
run: cargo build --release --features sp1 | |
- name: Test sp1 prover | |
run: cargo test -p sp1-driver --features enable --release | |
build-test-sgx: | |
name: Build and test sgx | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: scripts/toolchain-before.sh sgx | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- run: scripts/toolchain-after.sh sgx | |
- name: Setup and build | |
run: | | |
cargo build --features sgx | |
cargo test -p sgx-prover --features enable --release | |
shell: bash | |
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: cargo fmt --all --check |