Skip to content

Commit b6ce131

Browse files
committed
f
1 parent 7543007 commit b6ce131

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/consistency.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: OpenVM Repo Consistency Check
22

33
on:
4+
push:
5+
pull_request:
46
workflow_dispatch:
57

68
concurrency:
@@ -18,11 +20,14 @@ jobs:
1820
- name: Checkout current repo
1921
uses: actions/checkout@v4
2022

23+
- name: Install solc # svm should support arm64 linux
24+
run: (hash svm 2>/dev/null || cargo install --version 0.2.23 svm-rs) && svm install 0.8.19 && solc --version
25+
2126
- name: Clone openvm at tag
2227
run: |
2328
git clone https://github.com/openvm-org/openvm.git
2429
cd openvm
25-
git checkout ${{ inputs.version }}
30+
git checkout feat/format-verifier
2631
2732
- name: Run openvm setup
2833
run: |
@@ -31,4 +36,4 @@ jobs:
3136
3237
- name: Compare output to version folder
3338
run: |
34-
diff -r ~/.openvm/halo2 src/${{ inputs.version }}
39+
diff -r ~/.openvm/halo2 src/v1.0.1 --exclude=verifier.bytecode.json

src/v1.0.1/OpenVmHalo2Verifier.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ contract OpenVmHalo2Verifier is Halo2Verifier, IOpenVmHalo2Verifier {
2929
uint256 private constant FULL_PROOF_LENGTH = (12 + 2 + PUBLIC_VALUES_LENGTH + 43) * 32;
3030

3131
/// @dev The version of OpenVM that generated this verifier.
32-
string public constant OPENVM_VERSION = "1.0.0";
32+
string public constant OPENVM_VERSION = "1.0.1-rc.0";
3333

3434
/// @notice A wrapper that constructs the proof into the right format for
3535
/// use with the `snark-verifier` verification.

0 commit comments

Comments
 (0)