Skip to content

Commit 7231786

Browse files
Merge branch 'staging' into ci/aggregation-mode
2 parents cf6adf5 + c70c25d commit 7231786

16 files changed

+280
-284
lines changed

.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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ 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:

.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/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:

Makefile

Lines changed: 232 additions & 233 deletions
Large diffs are not rendered by default.

aggregation_mode/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ make anvil_start
1919
3. Start batcher
2020

2121
```shell
22-
make start_batcher_local
22+
make batcher_start_local
2323
```
2424

2525
4. Send SP1/Risc0 proofs:
@@ -38,13 +38,13 @@ Notes:
3838

3939
```shell
4040
# This will not run a real prover but a mocked one see below to run a real prover
41-
make start_proof_aggregator_dev AGGREGATOR="sp1|risc0"
41+
make proof_aggregator_start_dev AGGREGATOR="sp1|risc0"
4242
```
4343

4444
or
4545

4646
```shell
47-
make start_proof_aggregator AGGREGATOR="sp1|risc0"
47+
make proof_aggregator_start AGGREGATOR="sp1|risc0"
4848
```
4949

5050
Notes:
@@ -53,7 +53,7 @@ Notes:
5353
- Proving can be quite slow without GPUs, to activate gpu run:
5454

5555
```shell
56-
make start_proof_aggregator_gpu AGGREGATOR="sp1|risc0"
56+
make proof_aggregator_start_gpu AGGREGATOR="sp1|risc0"
5757
```
5858

5959
### Check the logs
@@ -69,7 +69,7 @@ cast logs 0xc351628EB244ec633d5f21fBD6621e1a683B1181 'AggregatedProofVerified(by
6969
Whenever any of the programs change, you must recompile them and update their corresponding program ids in `aggregation_mode/program_ids.json`. To do this, run the following command:
7070

7171
```shell
72-
make agg_mode_write_program_ids
72+
make proof_aggregator_write_program_ids
7373
```
7474

7575
We are using docker to produce deterministic builds so that the program ids are the same for all systems.

0 commit comments

Comments
 (0)