Add boba devnet deployment #7
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: OP Succinct | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build_native_programs: | |
runs-on: | |
- runs-on | |
- runner=16cpu-linux-arm64 | |
- run-id=${{ github.run_id }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Compile the fault proof program | |
run: cargo build --profile release-client-lto | |
working-directory: programs/fault-proof | |
- name: Compile the range program | |
run: cargo build --profile release-client-lto | |
working-directory: programs/range | |
build_zkvm_programs: | |
runs-on: | |
- runs-on | |
- runner=64cpu-linux-arm64 | |
- run-id=${{ github.run_id }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install SP1 toolchain | |
run: | | |
curl -L https://sp1.succinct.xyz | bash | |
~/.sp1/bin/sp1up | |
~/.sp1/bin/cargo-prove prove --version | |
source ~/.bashrc | |
- name: Compile the fault proof program | |
run: ~/.sp1/bin/cargo-prove prove build --binary fault-proof | |
working-directory: programs/fault-proof | |
- name: Compile the range program | |
run: ~/.sp1/bin/cargo-prove prove build --binary range | |
working-directory: programs/range | |
- name: Compile the aggregation program | |
run: ~/.sp1/bin/cargo-prove prove build --binary aggregation | |
working-directory: programs/aggregation |