Skip to content

Commit 1c8ac16

Browse files
authored
v0.17.0 (#1996)
2 parents 8a3a644 + f8b33ac commit 1c8ac16

File tree

219 files changed

+2040
-1677
lines changed

Some content is hidden

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

219 files changed

+2040
-1677
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ Please delete options that are not relevant.
2727
- [ ] Has a known issue
2828
- [Link to the open issue addressing it]()
2929
- [ ] If your PR changes the Operator compatibility (Ex: Upgrade prover versions)
30-
- [ ] This PR adds compatibility for operator for both versions and do not change batcher/docs/examples
30+
- [ ] This PR adds compatibility for operator for both versions and do not change crates/docs/examples
3131
- [ ] This PR updates batcher and docs/examples to the newer version. This requires the operator are already updated to be compatible

.github/workflows/build-and-test-go.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: build-go-projects
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/build-and-test-rust.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ name: build-and-test-rust-projects
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:
9-
- "batcher/**"
11+
- "crates/**"
1012
- "aggregation_mode/**"
1113
- ".github/workflows/build-and-test-rust.yml"
1214

@@ -43,24 +45,24 @@ jobs:
4345
path: |
4446
~/.cargo/registry
4547
~/.cargo/git
46-
batcher/target
48+
crates/target
4749
key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }}
4850
restore-keys: |
4951
${{ runner.os }}-rust-
5052
51-
- name: Check formatting of Batcher
53+
- name: Check formatting
5254
run: |
53-
cd batcher
55+
cd crates
5456
cargo fmt --all -- --check
5557
56-
- name: Run Clippy on Batcher
58+
- name: Run Clippy
5759
run: |
58-
cd batcher
60+
cd crates
5961
cargo clippy --all -- -D warnings
6062
6163
- name: Build Batcher
6264
run: |
63-
cd batcher
65+
cd crates
6466
cargo build --all
6567
6668
- name: Check formatting of AggregationMode
@@ -108,14 +110,14 @@ jobs:
108110
path: |
109111
~/.cargo/registry
110112
~/.cargo/git
111-
batcher/target
113+
crates/target
112114
key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }}
113115
restore-keys: |
114116
${{ runner.os }}-rust-
115117
116118
- name: Run Batcher tests
117119
run: |
118-
cd batcher
120+
cd crates
119121
cargo test --all
120122
121123
- name: Run AggregationMode tests

.github/workflows/build-contracts.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Build contracts
22
on:
33
push:
4-
branches: [main]
4+
branches:
5+
- testnet
6+
- staging
57
pull_request:
68
branches: ["*"]
79
paths:

.github/workflows/foundry-gas-diff.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Report gas diff
33
on:
44
push:
55
branches:
6-
- main
6+
- testnet
7+
- staging
78
pull_request:
89
# Run only for changes in specific files.
910
paths:

.github/workflows/lint-contracts.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Lint contracts
22
on:
33
push:
4-
branches: [main]
4+
branches:
5+
- testnet
6+
- staging
57
pull_request:
68
branches: ["*"]
79
paths:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: make build_batcher_client
2626

2727
- name: Rename binary
28-
run: mv batcher/target/release/aligned ${{ matrix.artifact_name }}
28+
run: mv crates/target/release/aligned ${{ matrix.artifact_name }}
2929

3030
- name: Release
3131
uses: softprops/action-gh-release@v2

.github/workflows/test-merkle-tree.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test-merkle-tree
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/test-risc-zero.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test-risc-zero
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

.github/workflows/test-sp1.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: test-sp1
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- testnet
7+
- staging
68
pull_request:
79
branches: ["*"]
810
paths:

0 commit comments

Comments
 (0)