Skip to content

Commit

Permalink
Merge pull request #1826 from o1-labs/vk-regression-parallel
Browse files Browse the repository at this point in the history
run regression tests in parallel
  • Loading branch information
mitschabaude committed Sep 18, 2024
2 parents 3061057 + 45858a4 commit 9cbe10f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ jobs:
'DEX integration tests',
'DEX integration test with proofs',
'Voting integration tests',
'Verification Key Regression Check',
'Verification Key Regression Check 1',
'Verification Key Regression Check 2',
'CommonJS test',
]
steps:
Expand Down
10 changes: 7 additions & 3 deletions run-ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,16 @@ case $TEST_TYPE in
./run src/examples/zkapps/dex/happy-path-with-proofs.ts --bundle
;;

"Verification Key Regression Check")
echo "Running Regression checks"
"Verification Key Regression Check 1")
echo "Running Regression checks part 1"
VK_TEST=1 ./run ./tests/vk-regression/vk-regression.ts --bundle
VK_TEST=2 ./run ./tests/vk-regression/vk-regression.ts --bundle
;;

"Verification Key Regression Check 2")
echo "Running Regression checks part 2"
VK_TEST=2 ./run ./tests/vk-regression/vk-regression.ts --bundle
;;

"CommonJS test")
echo "Testing CommonJS version"
node src/examples/commonjs.cjs
Expand Down

0 comments on commit 9cbe10f

Please sign in to comment.