test fix attempt #2
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: Test gnark prover | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "light-prover/**" | |
- ".github/workflows/prover-test.yml" | |
- ".github/workflows/prover-release.yml" | |
pull_request: | |
branches: | |
- "*" | |
paths: | |
- "light-prover/**" | |
- ".github/workflows/prover-test.yml" | |
- ".github/workflows/prover-release.yml" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
jobs: | |
build-and-test: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: "./light-prover/go.mod" | |
- name: Install Elan | |
run: | | |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- -y -v --default-toolchain leanprover/lean4:nightly-2023-07-12 | |
echo "LAKE_VERSION=$(~/.elan/bin/lake --version)" >> $GITHUB_ENV | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: formal-verification/lake-packages | |
key: "${{ env.LAKE_VERSION }}" | |
- name: Download keys | |
run: | | |
cd light-prover | |
./scripts/download_keys.sh | |
- name: Build | |
run: | | |
cd light-prover | |
go build | |
- name: Unit tests | |
run: | | |
cd light-prover | |
go test ./prover -timeout 30m | |
- name: Integration tests | |
run: | | |
cd light-prover | |
go test -timeout 30m | |
# ./light-prover extract-circuit --output formal-verification/FormalVerification/Circuit.lean --tree-depth=20 --compressed-accounts=10 |