Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: multiple pessimistic proofs e2e tests #105

Merged
merged 8 commits into from
Jan 15, 2025
20 changes: 1 addition & 19 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,6 @@ jobs:
- name: Install Kurtosis CDK tools
uses: ./kurtosis-cdk/.github/actions/setup-kurtosis-cdk

- name: Install polycli
run: |
POLYCLI_VERSION="${{ vars.POLYCLI_VERSION }}"
tmp_dir=$(mktemp -d)
curl -L "https://github.com/0xPolygon/polygon-cli/releases/download/${POLYCLI_VERSION}/polycli_${POLYCLI_VERSION}_linux_amd64.tar.gz" | tar -xz -C "$tmp_dir"
mv "$tmp_dir"/* /usr/local/bin/polycli
rm -rf "$tmp_dir"
sudo chmod +x /usr/local/bin/polycli
/usr/local/bin/polycli version

- name: Setup Bats and bats libs
uses: bats-core/[email protected]

Expand Down Expand Up @@ -138,18 +128,10 @@ jobs:
with:
repository: 0xPolygon/kurtosis-cdk
path: kurtosis-cdk
ref: jhilliard/multi-pp-testing
ref: main
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should pin a version here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point!

I'll create a separate PR for that, because the v0.2.26 on the Kurtosis CDK was created in a meantime.


- name: Install Kurtosis CDK tools
uses: ./kurtosis-cdk/.github/actions/setup-kurtosis-cdk

- name: Install polycli
run: |
git clone https://github.com/0xPolygon/polygon-cli -b jhilliard/alonso
cd polygon-cli
make install
cp ~/go/bin/polycli /usr/local/bin/polycli
/usr/local/bin/polycli version

- name: Setup Bats and bats libs
uses: bats-core/[email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ args:


cdk_node_image: cdk:latest
cdk_erigon_node_image: hermeznetwork/cdk-erigon:v2.60.0
cdk_erigon_node_image: hermeznetwork/cdk-erigon:v2.61.2
zkevm_contracts_image: leovct/zkevm-contracts:v9.0.0-rc.3-pp-fork.12-patch.1
additional_services: []
consensus_contract_type: pessimistic
Expand All @@ -37,4 +37,3 @@ args:
zkevm_use_real_verifier: true
enable_normalcy: true
verifier_program_vkey: 0x00766aa16a6efe4ac05c0fe21d4b50f9631dbd1a2663a982da861427085ea2ea

3 changes: 1 addition & 2 deletions test/combinations/fork12-pessimistic-multi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
args:
cdk_node_image: cdk:latest
agglayer_image: ghcr.io/agglayer/agglayer:0.2.0-rc.20
cdk_erigon_node_image: hermeznetwork/cdk-erigon:v2.60.0
cdk_erigon_node_image: hermeznetwork/cdk-erigon:v2.61.2
zkevm_contracts_image: leovct/zkevm-contracts:v9.0.0-rc.3-pp-fork.12-patch.1
additional_services: []
consensus_contract_type: pessimistic
Expand All @@ -12,4 +12,3 @@ args:
enable_normalcy: true
verifier_program_vkey: 0x00766aa16a6efe4ac05c0fe21d4b50f9631dbd1a2663a982da861427085ea2ea
agglayer_prover_sp1_key: {{.AGGLAYER_PROVER_SP1_KEY}}

2 changes: 1 addition & 1 deletion test/combinations/fork12-pessimistic.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
args:
agglayer_image: ghcr.io/agglayer/agglayer:0.2.0-rc.20
cdk_erigon_node_image: hermeznetwork/cdk-erigon:v2.60.0-beta8
cdk_erigon_node_image: hermeznetwork/cdk-erigon:v2.61.2
cdk_node_image: cdk
zkevm_bridge_proxy_image: haproxy:3.0-bookworm
zkevm_bridge_service_image: hermeznetwork/zkevm-bridge-service:v0.6.0-RC1
Expand Down
Loading