Skip to content

Commit

Permalink
Merge pull request #1839 from o1-labs/merge-main-v2
Browse files Browse the repository at this point in the history
Merge main into V2 to fix CI
  • Loading branch information
Trivo25 authored Sep 26, 2024
2 parents 5f761df + cea574d commit eb56a56
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,11 @@ jobs:
shopt -s globstar
test_files=(./dist/node/**/*.unit-test.js)
set -o pipefail
for ((i=start_index; i<end_index && i<${#test_files[@]}; i++)); do
echo "Running test: ${test_files[$i]}"
node --enable-source-maps "${test_files[$i]}" | tee -a profiling.md
echo "Running test: ${test_files[$i]}"
node --enable-source-maps "${test_files[$i]}" | tee -a profiling.md
done
continue-on-error: false

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/live-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ on:
push:
branches:
- main
- v2
pull_request:
branches:
- main
- v2
workflow_dispatch: {}

jobs:
Expand Down
Binary file added audits/VAR_o1js_240318_o1js_V3.pdf
Binary file not shown.
4 changes: 3 additions & 1 deletion src/lib/proof-system/proof-system.unit-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ it('pickles rule creation', async () => {
// a rule that verifies a proof conditionally, and returns the proof's input as output
function main(proof: EmptyProof, shouldVerify: Bool) {
proof.verifyIf(shouldVerify);
return proof.publicInput;
return {
publicOutput: proof.publicInput,
};
}
let privateInputs = [EmptyProof, Bool];

Expand Down
2 changes: 1 addition & 1 deletion src/mina
Submodule mina updated 153 files

0 comments on commit eb56a56

Please sign in to comment.