Skip to content

Commit d9d0d57

Browse files
committed
Merge remote-tracking branch 'upstream/main' into mina
2 parents 1dcd2d9 + 2ef6e6a commit d9d0d57

290 files changed

Lines changed: 15768 additions & 9612 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
branches: [main]
77
pull_request:
88
branches: ["*"]
9-
9+
env:
10+
FFI_FOR_RELEASE: false
1011
jobs:
1112
build:
1213
runs-on: ubuntu-latest
@@ -25,9 +26,9 @@ jobs:
2526
run: make build_halo2_kzg_linux
2627
- name: Build Halo2-IPA bindings
2728
run: make build_halo2_ipa_linux
29+
- name: Build Merkle Tree bindings
30+
run: make build_merkle_tree_linux
2831
- name: Build operator
2932
run: go build operator/cmd/main.go
3033
- name: Build aggregator
3134
run: go build aggregator/cmd/main.go
32-
- name: Build task sender
33-
run: go build task_sender/cmd/main.go

.github/workflows/release.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Release Rust Project
1+
name: Build and Release Aligned Client
22

33
on:
44
push:
@@ -7,16 +7,27 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
include:
13+
- os: ubuntu-latest
14+
artifact_name: aligned-x86
15+
- os: macos-latest
16+
artifact_name: aligned-arm64
17+
18+
runs-on: ${{ matrix.os }}
1119

1220
steps:
1321
- name: Checkout repository
1422
uses: actions/checkout@v4
1523

1624
- name: Build batcher client
1725
run: make build_batcher_client
26+
27+
- name: Rename binary
28+
run: mv batcher/target/release/aligned ${{ matrix.artifact_name }}
1829

1930
- name: Release
2031
uses: softprops/action-gh-release@v2
2132
with:
22-
files: batcher/client/target/release/aligned
33+
files: ${{ matrix.artifact_name }}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ out
66
cache
77
**/build
88
**/target
9-
task_sender/test_examples/gnark_groth16_bn254_infinite_script/infinite_proofs/**
9+
scripts/test_files/gnark_groth16_bn254_infinite_script/infinite_proofs/**
1010
batcher/aligned/batch_inclusion_responses/*
1111
**/aligned_verification_data
1212
**/broadcast
13+
14+
nonce_*.bin

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@
77
[submodule "examples/verify/lib/forge-std"]
88
path = examples/verify/lib/forge-std
99
url = https://github.com/foundry-rs/forge-std
10+
[submodule "examples/zkquiz/contracts/lib/forge-std"]
11+
path = examples/zkquiz/contracts/lib/forge-std
12+
url = https://github.com/foundry-rs/forge-std
13+
[submodule "examples/zkquiz/contracts/lib/openzeppelin-contracts"]
14+
path = examples/zkquiz/contracts/lib/openzeppelin-contracts
15+
url = https://github.com/OpenZeppelin/openzeppelin-contracts

0 commit comments

Comments
 (0)