From b7348b2614c13897425d58a8505a71398ae9dceb Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Wed, 23 Oct 2024 15:19:25 -0300 Subject: [PATCH 01/14] Merge branch 'assertoor-run-on-cd' into enhance-el-assertoor-ci-test --- .github/workflows/assertoor.yaml | 41 ++++++++++++++++++++++++++++++++ .github/workflows/ci.yaml | 5 ++++ .github/workflows/hive.yaml | 8 +++++-- test_data/el-stability-check.yml | 28 ++++++++++++++++++++++ test_data/network_params.yaml | 5 +++- 5 files changed, 84 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/assertoor.yaml create mode 100644 test_data/el-stability-check.yml diff --git a/.github/workflows/assertoor.yaml b/.github/workflows/assertoor.yaml new file mode 100644 index 000000000..bb5b8aa3e --- /dev/null +++ b/.github/workflows/assertoor.yaml @@ -0,0 +1,41 @@ +name: Assertoor +on: + merge_group: + push: + branches: [ main ] + pull_request: + branches: [ '*' ] + paths-ignore: + - 'README.md' + - 'LICENSE' + - "**/README.md" + - "**/docs/**" + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +env: + RUST_VERSION: 1.80.1 + +jobs: + test-run: + name: Stability Check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build Docker image + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + load: true # Important for building without pushing + tags: ethereum_rust + - name: Setup kurtosis testnet and run assertoor tests + uses: ethpandaops/kurtosis-assertoor-github-action@v1 + with: + ethereum_package_url: 'github.com/lambdaclass/ethereum-package' + ethereum_package_branch: 'ethereum-rust-integration' + ethereum_package_args: './test_data/network_params.yaml' diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dfaa31600..15e5a24fb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,6 +5,11 @@ on: branches: [main] pull_request: branches: ["*"] + paths-ignore: + - 'README.md' + - 'LICENSE' + - "**/README.md" + - "**/docs/**" concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/.github/workflows/hive.yaml b/.github/workflows/hive.yaml index 210227485..7d3f90850 100644 --- a/.github/workflows/hive.yaml +++ b/.github/workflows/hive.yaml @@ -4,10 +4,14 @@ on: merge_group: push: branches: [main] - paths-ignore: ["crates/l2/**"] pull_request: branches: ["*"] - paths-ignore: ["crates/l2/**"] + paths-ignore: + - "crates/l2/**" + - 'README.md' + - 'LICENSE' + - "**/README.md" + - "**/docs/**" concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml new file mode 100644 index 000000000..5760091b3 --- /dev/null +++ b/test_data/el-stability-check.yml @@ -0,0 +1,28 @@ +# This file is based upon `assertoor-tests` stability check file: +# https://github.com/ethpandaops/assertoor-test/blob/master/assertoor-tests/stability-check.yaml +# +# We removed the consensus checks to keep it minimal. The checks removed were: +# - check_consensus_finality +# - check_consensus_attestation_stats +# - check_consensus_reorgs +# - check_consensus_forks + +id: el-stability-check +name: "Check Execution Stability" +timeout: 2h +tasks: +- name: check_clients_are_healthy + title: "Check if at least one client is ready" + timeout: 5m + config: + minClientCount: 1 + +- name: run_tasks_concurrent + title: "Check if all EL & CL clients are synced" + timeout: 30m + config: + tasks: + - name: check_consensus_sync_status + title: "Check if CL clients are synced" + - name: check_execution_sync_status + title: "Check if EL clients are synced" diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index 0799964ff..443e7082f 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -14,5 +14,8 @@ additional_services: - blob_spammer assertoor_params: - run_stability_check: true + run_stability_check: false run_block_proposal_check: false + tests: + - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/assertoor-run-on-cd/test_data/el-stability-check.yml' + From 4762f6ef2348403c6c32b2c928b87159d7a83c9d Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 10:37:11 -0300 Subject: [PATCH 02/14] Testing block proposal given patterns and pointing to the new branch --- .github/workflows/assertoor.yaml | 2 +- test_data/el-stability-check.yml | 29 ++++++++++++++++++++++++----- test_data/network_params.yaml | 7 ++++--- 3 files changed, 29 insertions(+), 9 deletions(-) diff --git a/.github/workflows/assertoor.yaml b/.github/workflows/assertoor.yaml index bb5b8aa3e..17f7795eb 100644 --- a/.github/workflows/assertoor.yaml +++ b/.github/workflows/assertoor.yaml @@ -20,7 +20,7 @@ env: jobs: test-run: - name: Stability Check + name: CI Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index 5760091b3..97d598031 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -13,16 +13,35 @@ timeout: 2h tasks: - name: check_clients_are_healthy title: "Check if at least one client is ready" - timeout: 5m - config: - minClientCount: 1 + timeout: 2m - name: run_tasks_concurrent - title: "Check if all EL & CL clients are synced" - timeout: 30m + title: "Check if all EL & CL clients are synced and they were able to propose blocks" + timeout: 5m config: tasks: - name: check_consensus_sync_status title: "Check if CL clients are synced" - name: check_execution_sync_status title: "Check if EL clients are synced" + - name: check_consensus_block_proposals + title: "Wait for block proposal from prysm-geth" + configVars: + validatorNamePattern: "*prysm*" + - name: check_consensus_block_proposals + title: "Wait for block proposal from lighthouse-ethereumrust" + configVars: + validatorNamePattern: "*lighthouse*" + +- name: run_task_matrix + title: "Check block proposals from all client pairs" + configVars: + matrixValues: "validatorPairNames" + config: + runConcurrent: true + matrixVar: "validatorPairName" + task: + name: check_consensus_block_proposals + title: "Wait for block proposal from ${validatorPairName}" + configVars: + validatorNamePattern: "validatorPairName" diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index 443e7082f..c09f4baaa 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -1,10 +1,11 @@ participants: - el_type: geth - cl_type: lighthouse - count: 2 + cl_type: prysm + validator_count: 32 - el_type: ethereumrust cl_type: lighthouse count: 1 + validator_count: 32 additional_services: - assertoor @@ -17,5 +18,5 @@ assertoor_params: run_stability_check: false run_block_proposal_check: false tests: - - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/assertoor-run-on-cd/test_data/el-stability-check.yml' + - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/enhance-el-assertoor-ci-test/test_data/el-stability-check.yml' From eebcc8051cfa08a56d95486ee6d9f4b3a6bbd0b4 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 10:44:01 -0300 Subject: [PATCH 03/14] Check the validatorPairNames through a run --- .github/workflows/assertoor.yaml | 2 +- test_data/el-stability-check.yml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/assertoor.yaml b/.github/workflows/assertoor.yaml index 17f7795eb..bb5b8aa3e 100644 --- a/.github/workflows/assertoor.yaml +++ b/.github/workflows/assertoor.yaml @@ -20,7 +20,7 @@ env: jobs: test-run: - name: CI Check + name: Stability Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index 97d598031..b7cad3e1b 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -24,14 +24,14 @@ tasks: title: "Check if CL clients are synced" - name: check_execution_sync_status title: "Check if EL clients are synced" - - name: check_consensus_block_proposals - title: "Wait for block proposal from prysm-geth" - configVars: - validatorNamePattern: "*prysm*" - - name: check_consensus_block_proposals - title: "Wait for block proposal from lighthouse-ethereumrust" - configVars: - validatorNamePattern: "*lighthouse*" + # - name: check_consensus_block_proposals + # title: "Wait for block proposal from prysm-geth" + # configVars: + # validatorNamePattern: "*prysm*" + # - name: check_consensus_block_proposals + # title: "Wait for block proposal from lighthouse-ethereumrust" + # configVars: + # validatorNamePattern: "*lighthouse*" - name: run_task_matrix title: "Check block proposals from all client pairs" From 799ab17cc4307cb0ad5859a9af78d0a6ef9e4d1e Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 11:07:57 -0300 Subject: [PATCH 04/14] Added reorgs and forks to check how much it take --- test_data/el-stability-check.yml | 43 ++++++++++++++++---------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index b7cad3e1b..f4d655651 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -12,11 +12,11 @@ name: "Check Execution Stability" timeout: 2h tasks: - name: check_clients_are_healthy - title: "Check if at least one client is ready" - timeout: 2m + title: "Check if all clients are ready" + timeout: 1m - name: run_tasks_concurrent - title: "Check if all EL & CL clients are synced and they were able to propose blocks" + title: "Check if all EL & CL clients are synced" timeout: 5m config: tasks: @@ -24,24 +24,25 @@ tasks: title: "Check if CL clients are synced" - name: check_execution_sync_status title: "Check if EL clients are synced" - # - name: check_consensus_block_proposals - # title: "Wait for block proposal from prysm-geth" - # configVars: - # validatorNamePattern: "*prysm*" - # - name: check_consensus_block_proposals - # title: "Wait for block proposal from lighthouse-ethereumrust" - # configVars: - # validatorNamePattern: "*lighthouse*" -- name: run_task_matrix - title: "Check block proposals from all client pairs" - configVars: - matrixValues: "validatorPairNames" +- name: run_tasks_concurrent + title: "Check for reorgs, forks and block proposals" + timeout: 8m config: - runConcurrent: true - matrixVar: "validatorPairName" - task: - name: check_consensus_block_proposals - title: "Wait for block proposal from ${validatorPairName}" + tasks: + - name: check_consensus_reorgs + title: "Check consensus reorgs" + - name: check_consensus_forks + title: "Check consensus forks" + - name: run_task_matrix + title: "Check block proposals from all client pairs" configVars: - validatorNamePattern: "validatorPairName" + matrixValues: "validatorPairNames" + config: + runConcurrent: true + matrixVar: "validatorPairName" + task: + name: check_consensus_block_proposals + title: "Wait for block proposal from ${validatorPairName}" + configVars: + validatorNamePattern: "validatorPairName" From 0f39c185ec57f70c48ccd1519234799be3bdbf21 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 18:10:59 -0300 Subject: [PATCH 05/14] splitting block checks from reorgs and forks --- test_data/el-stability-check.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index f4d655651..326547d99 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -25,24 +25,25 @@ tasks: - name: check_execution_sync_status title: "Check if EL clients are synced" +- name: run_task_matrix + title: "Check block proposals from all client pairs" + configVars: + matrixValues: "validatorPairNames" + config: + runConcurrent: true + matrixVar: "validatorPairName" + task: + name: check_consensus_block_proposals + title: "Wait for block proposal from ${validatorPairName}" + configVars: + validatorNamePattern: "validatorPairName" + - name: run_tasks_concurrent - title: "Check for reorgs, forks and block proposals" + title: "Check for reorgs and forks" timeout: 8m config: tasks: - name: check_consensus_reorgs title: "Check consensus reorgs" - name: check_consensus_forks - title: "Check consensus forks" - - name: run_task_matrix - title: "Check block proposals from all client pairs" - configVars: - matrixValues: "validatorPairNames" - config: - runConcurrent: true - matrixVar: "validatorPairName" - task: - name: check_consensus_block_proposals - title: "Wait for block proposal from ${validatorPairName}" - configVars: - validatorNamePattern: "validatorPairName" + title: "Check consensus forks" \ No newline at end of file From 5fc747ce791cfb47549471482e82b154ed797920 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 18:31:52 -0300 Subject: [PATCH 06/14] Check without the reorgs and forks --- test_data/el-stability-check.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index 326547d99..07c3a97c1 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -38,12 +38,12 @@ tasks: configVars: validatorNamePattern: "validatorPairName" -- name: run_tasks_concurrent - title: "Check for reorgs and forks" - timeout: 8m - config: - tasks: - - name: check_consensus_reorgs - title: "Check consensus reorgs" - - name: check_consensus_forks - title: "Check consensus forks" \ No newline at end of file +# - name: run_tasks_concurrent +# title: "Check for reorgs and forks" +# timeout: 8m +# config: +# tasks: +# - name: check_consensus_reorgs +# title: "Check consensus reorgs" +# - name: check_consensus_forks +# title: "Check consensus forks" \ No newline at end of file From b3f7c9a20f5f206ccd9e2dec050cc3f812484653 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 18:55:57 -0300 Subject: [PATCH 07/14] Re-added reorgs and forks --- test_data/el-stability-check.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index 07c3a97c1..ac9be3b0d 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -25,6 +25,16 @@ tasks: - name: check_execution_sync_status title: "Check if EL clients are synced" +- name: run_tasks_concurrent + title: "Check for reorgs and forks" + timeout: 20m + config: + tasks: + - name: check_consensus_reorgs + title: "Check consensus reorgs" + - name: check_consensus_forks + title: "Check consensus forks" + - name: run_task_matrix title: "Check block proposals from all client pairs" configVars: @@ -36,14 +46,4 @@ tasks: name: check_consensus_block_proposals title: "Wait for block proposal from ${validatorPairName}" configVars: - validatorNamePattern: "validatorPairName" - -# - name: run_tasks_concurrent -# title: "Check for reorgs and forks" -# timeout: 8m -# config: -# tasks: -# - name: check_consensus_reorgs -# title: "Check consensus reorgs" -# - name: check_consensus_forks -# title: "Check consensus forks" \ No newline at end of file + validatorNamePattern: "validatorPairName" \ No newline at end of file From 911ccaaf1b8110a79364c98e1763aeceedeb596f Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 19:29:19 -0300 Subject: [PATCH 08/14] Ordered correctly the tasks, fixed comment and add timeouts --- test_data/el-stability-check.yml | 34 +++++++++++++++----------------- test_data/network_params.yaml | 4 +++- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index ac9be3b0d..f4a23bd77 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -1,11 +1,8 @@ -# This file is based upon `assertoor-tests` stability check file: -# https://github.com/ethpandaops/assertoor-test/blob/master/assertoor-tests/stability-check.yaml +# This file is mix and match based upon the basic `assertoor-tests` playbooks: +# - https://github.com/ethpandaops/assertoor-test/blob/master/assertoor-tests/stability-check.yaml +# - https://github.com/ethpandaops/assertoor-test/blob/master/assertoor-tests/block-proposal-check.yaml # -# We removed the consensus checks to keep it minimal. The checks removed were: -# - check_consensus_finality -# - check_consensus_attestation_stats -# - check_consensus_reorgs -# - check_consensus_forks +# For reference on each individual check see: https://github.com/ethpandaops/assertoor/wiki#supported-tasks-in-assertoor id: el-stability-check name: "Check Execution Stability" @@ -25,18 +22,9 @@ tasks: - name: check_execution_sync_status title: "Check if EL clients are synced" -- name: run_tasks_concurrent - title: "Check for reorgs and forks" - timeout: 20m - config: - tasks: - - name: check_consensus_reorgs - title: "Check consensus reorgs" - - name: check_consensus_forks - title: "Check consensus forks" - - name: run_task_matrix title: "Check block proposals from all client pairs" + timeout: 1m configVars: matrixValues: "validatorPairNames" config: @@ -46,4 +34,14 @@ tasks: name: check_consensus_block_proposals title: "Wait for block proposal from ${validatorPairName}" configVars: - validatorNamePattern: "validatorPairName" \ No newline at end of file + validatorNamePattern: "validatorPairName" + +- name: run_tasks_concurrent + title: "Check chain stability (reorgs and forks)" + timeout: 7m + config: + tasks: + - name: check_consensus_reorgs + title: "Check consensus reorgs" + - name: check_consensus_forks + title: "Check consensus forks" \ No newline at end of file diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index c09f4baaa..385d6f5b9 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -2,9 +2,11 @@ participants: - el_type: geth cl_type: prysm validator_count: 32 + - el_type: geth + cl_type: teku + validator_count: 32 - el_type: ethereumrust cl_type: lighthouse - count: 1 validator_count: 32 additional_services: From 586187180eeb699999613953f588b442ade87087 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 19:46:38 -0300 Subject: [PATCH 09/14] Change clients in kurtosis config --- test_data/network_params.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index 385d6f5b9..583827c60 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -1,9 +1,9 @@ participants: - el_type: geth - cl_type: prysm + cl_type: lighthouse validator_count: 32 - el_type: geth - cl_type: teku + cl_type: prysm validator_count: 32 - el_type: ethereumrust cl_type: lighthouse From 43c9ca14b22cfdde9aa7daa7eedada1f5b647ff5 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 19:58:02 -0300 Subject: [PATCH 10/14] Updated block proposal check timeout due to the addition of clients --- test_data/el-stability-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index f4a23bd77..721cb0e50 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -24,7 +24,7 @@ tasks: - name: run_task_matrix title: "Check block proposals from all client pairs" - timeout: 1m + timeout: 2m configVars: matrixValues: "validatorPairNames" config: From 4a4c5770c56fdf5211c2461326c50be31af953a4 Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 20:13:49 -0300 Subject: [PATCH 11/14] Added attestation_stats check to our stability check and enabled transaction tests --- test_data/el-stability-check.yml | 4 +++- test_data/network_params.yaml | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index 721cb0e50..d87c65fab 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -44,4 +44,6 @@ tasks: - name: check_consensus_reorgs title: "Check consensus reorgs" - name: check_consensus_forks - title: "Check consensus forks" \ No newline at end of file + title: "Check consensus forks" + - name: check_consensus_attestation_stats + title: "Check consensus attestation stats" \ No newline at end of file diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index 583827c60..60edffd91 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -17,8 +17,10 @@ additional_services: - blob_spammer assertoor_params: - run_stability_check: false - run_block_proposal_check: false tests: - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/enhance-el-assertoor-ci-test/test_data/el-stability-check.yml' - + run_stability_check: false + run_block_proposal_check: false + run_transaction_test: true + run_blob_transaction_test: true + run_opcodes_transaction_test: true \ No newline at end of file From aeaaa43f6a09f9ed2ff6638943b17dfe3ddcbc7d Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 20:57:52 -0300 Subject: [PATCH 12/14] Added just blob transaction test due to timing or errors --- test_data/network_params.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index 60edffd91..a02ba5376 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -14,13 +14,10 @@ additional_services: - dora - el_forkmon - tx_spammer - - blob_spammer assertoor_params: - tests: - - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/enhance-el-assertoor-ci-test/test_data/el-stability-check.yml' run_stability_check: false run_block_proposal_check: false - run_transaction_test: true run_blob_transaction_test: true - run_opcodes_transaction_test: true \ No newline at end of file + tests: + - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/enhance-el-assertoor-ci-test/test_data/el-stability-check.yml' \ No newline at end of file From 289c794190d1cc98e94736dbf0e942741f85599f Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 24 Oct 2024 21:22:04 -0300 Subject: [PATCH 13/14] Removed the attestation_stat check it takes more than 10m --- test_data/el-stability-check.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/test_data/el-stability-check.yml b/test_data/el-stability-check.yml index d87c65fab..6b4a38a64 100644 --- a/test_data/el-stability-check.yml +++ b/test_data/el-stability-check.yml @@ -45,5 +45,3 @@ tasks: title: "Check consensus reorgs" - name: check_consensus_forks title: "Check consensus forks" - - name: check_consensus_attestation_stats - title: "Check consensus attestation stats" \ No newline at end of file From c8ae3bbfe76d5c62e991df74f8842240af92500f Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Fri, 25 Oct 2024 11:21:25 -0300 Subject: [PATCH 14/14] Point to main the URL to our custom stability check --- test_data/network_params.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_data/network_params.yaml b/test_data/network_params.yaml index a02ba5376..b20776e53 100644 --- a/test_data/network_params.yaml +++ b/test_data/network_params.yaml @@ -20,4 +20,4 @@ assertoor_params: run_block_proposal_check: false run_blob_transaction_test: true tests: - - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/enhance-el-assertoor-ci-test/test_data/el-stability-check.yml' \ No newline at end of file + - 'https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_rust/refs/heads/main/test_data/el-stability-check.yml' \ No newline at end of file