refactor before multiblock #46
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: compile zkvm_client for zkvm | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_and_run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download SP1 | |
run: curl -L https://sp1.succinct.xyz | bash | |
- name: Install SP1 | |
run: /home/runner/.config/.sp1/bin/sp1up | |
- name: Compile the client program | |
run: /home/runner/.config/.sp1/bin/cargo-prove prove build --ignore-rust-version | |
working-directory: zkvm-client |