Skip to content

Commit 894f68d

Browse files
committed
ci: send proofs on e2e test
1 parent d8fb28d commit 894f68d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,13 +1127,27 @@ docker_batcher_send_groth16_burst:
11271127
--rpc_url $(DOCKER_RPC_URL) \
11281128
--max_fee 0.1ether
11291129

1130+
docker_batcher_send_circom_groth16_bn128_burst:
1131+
@echo "Sending Circom Groth16 BN128 task to Batcher..."
1132+
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
1133+
--private_key $(DOCKER_PROOFS_PRIVATE_KEY) \
1134+
--proving_system CircomGroth16Bn128 \
1135+
--proof ./scripts/test_files/circom_groth16_bn128_script/proof.json \
1136+
--public_input ./scripts/test_files/circom_groth16_bn128_script/public.json \
1137+
--vk ./scripts/test_files/circom_groth16_bn128_script/verification_key.json \
1138+
--proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \
1139+
--repetitions $(DOCKER_BURST_SIZE) \
1140+
--rpc_url $(DOCKER_RPC_URL) \
1141+
--max_fee 0.1ether
1142+
11301143
# Update target as new proofs are supported.
11311144
docker_batcher_send_all_proofs_burst:
11321145
@$(MAKE) docker_batcher_send_sp1_burst
11331146
@$(MAKE) docker_batcher_send_risc0_burst
11341147
@$(MAKE) docker_batcher_send_plonk_bn254_burst
11351148
@$(MAKE) docker_batcher_send_plonk_bls12_381_burst
11361149
@$(MAKE) docker_batcher_send_groth16_burst
1150+
@$(MAKE) docker_batcher_send_circom_groth16_bn128_burst
11371151

11381152
docker_batcher_send_infinite_groth16:
11391153
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') \

0 commit comments

Comments
 (0)