From f41395eb1751a886de01ac1f2dac78e9ebba5994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Arjovsky?= Date: Tue, 26 Nov 2024 15:04:11 +0100 Subject: [PATCH] prod-ready --- .github/workflows/hive_coverage.yaml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/hive_coverage.yaml b/.github/workflows/hive_coverage.yaml index cebd91a00..fb54f0cb6 100644 --- a/.github/workflows/hive_coverage.yaml +++ b/.github/workflows/hive_coverage.yaml @@ -1,8 +1,6 @@ name: Daily Hive Coverage on: - #TODO: remove - pull_request: schedule: # Every day at UTC midnight - cron: '0 0 * * *' @@ -24,14 +22,13 @@ jobs: include: - simulation: rpc-compat name: "Rpc Compat tests" - run_command: make run-hive-on-latest SIMULATION=ethereum/rpc-compat TEST_PATTERN="/eth_chainId|eth_getTransactionByBlockHashAndIndex" + run_command: make run-hive-on-latest SIMULATION=ethereum/rpc-compat HIVE_EXTRA_ARGS="--sim.parallelism 4" - simulation: devp2p name: "Devp2p eth tests" - run_command: make run-hive-on-latest SIMULATION=devp2p TEST_PATTERN="discv4" - # TODO: uncomment - # - simulation: engine - # name: "Cancun Engine tests" - # run_command: make run-hive-on-latest SIMULATION=ethereum/engine + run_command: make run-hive-on-latest SIMULATION=devp2p HIVE_EXTRA_ARGS="--sim.parallelism 4" + - simulation: engine + name: "Cancun Engine tests" + run_command: make run-hive-on-latest SIMULATION=ethereum/engine HIVE_EXTRA_ARGS="--sim.parallelism 4" steps: - name: Download artifacts @@ -93,7 +90,7 @@ jobs: echo "# Hive coverage report" >> $GITHUB_STEP_SUMMARY cat results.md >> $GITHUB_STEP_SUMMARY - # - name: Post results to slack - # env: - # url: ${{ secrets.SLACK_WEBHOOK_URL }} - # run: sh publish.sh + - name: Post results to slack + env: + url: ${{ secrets.SLACK_WEBHOOK_URL }} + run: sh publish.sh