Skip to content

Commit

Permalink
fix verify-proof ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Dec 10, 2024
1 parent 6fb401d commit 7a6c879
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/verify-circuit-proof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure
run: cd crypto3 && mkdir build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=TRUE -DBUILD_CRYPTO3_TESTS=TRUE -G Ninja
run: mkdir build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=TRUE -DBUILD_CRYPTO3_TESTS=TRUE -G Ninja
shell: nix develop .#crypto3-tests --command bash -e {0}
- name: Build
run: cd crypto3/build && ninja transpiler_evm_test
run: cd build && ninja transpiler_evm_test
shell: nix develop .#crypto3-tests --command bash -e {0}
- name: Execute
run: cd crypto3/build && ./libs/transpiler/test/transpiler_evm_test -- --save-proof-data
run: cd build && ./crypto3/libs/transpiler/test/transpiler_evm_test -- --save-proof-data
shell: nix develop .#crypto3-tests --command bash -e {0}
cd crypto3 && eval "$configurePhase"
nix develop -c ninja transpiler_evm_test
nix develop -c ./libs/transpiler/test/transpiler_evm_test -- --save-proof-data
- name: Publish Proofs
uses: actions/upload-artifact@v4
with:
name: proofs
path: crypto3/build/circuit*
path: build/circuit*
if-no-files-found: error

verify-proofs:
Expand Down

0 comments on commit 7a6c879

Please sign in to comment.