Updated V3 Prover README #1431
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: Rust | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
wakeup: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::490752553772:role/summa-solvency-ec2-slc | |
role-duration-seconds: 900 | |
aws-region: us-west-2 | |
- name: Wakeup runner | |
run: .github/scripts/wakeup.sh | |
build: | |
runs-on: [summa-solvency-runner] | |
needs: [wakeup] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Environment | |
run: echo "PATH=/home/ubuntu/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" >> "$GITHUB_ENV" | |
- name: Install solc | |
run: (hash svm 2>/dev/null || cargo install --version 0.2.23 svm-rs) && svm install 0.8.20 && solc --version | |
- name: Test Prover | |
run: | | |
cd prover | |
cargo test --release -- --nocapture | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
# TODO restore workflow | |
# - name: Test backend | |
# run: | | |
# cd backend | |
# cargo test --release -- --nocapture | |
# - name: Test example | |
# run: | | |
# cd backend | |
# cargo run --release --example summa_solvency_flow |