From 851bb8020088d97421dc6db761ba0a0c3502581c Mon Sep 17 00:00:00 2001 From: Rodrigo Oliveri Date: Thu, 31 Oct 2024 13:01:22 -0300 Subject: [PATCH] Testing removing also concurrency and just letting the on workflow_run --- .github/workflows/hive.yaml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/.github/workflows/hive.yaml b/.github/workflows/hive.yaml index 53abad7d4..07386e5f1 100644 --- a/.github/workflows/hive.yaml +++ b/.github/workflows/hive.yaml @@ -1,31 +1,17 @@ # Runs the specified hive testing suites name: Hive on: - merge_group: - push: - branches: [main] - pull_request: - branches: ["*"] - paths-ignore: - - "crates/l2/**" - - 'README.md' - - 'LICENSE' - - "**/README.md" - - "**/docs/**" workflow_run: workflows: [Docker] types: - completed - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - + env: RUST_VERSION: 1.80.1 jobs: run-hive: + if: ${{ github.event.workflow_run.conclusion == 'success' }} name: ${{ matrix.name }} runs-on: ubuntu-latest strategy: @@ -46,7 +32,6 @@ jobs: - simulation: engine-cancun name: "Cancun Engine tests" run_command: make run-hive SIMULATION=ethereum/engine TEST_PATTERN="cancun/Unique Payload ID|ParentHash equals BlockHash on NewPayload|Re-Execute Payload|Payload Build after New Invalid Payload|RPC|Build Payload with Invalid ChainID|Invalid PayloadAttributes, Zero timestamp, Syncing=False|Invalid PayloadAttributes, Parent timestamp, Syncing=False|Invalid PayloadAttributes, Missing BeaconRoot, Syncing=False|Suggested Fee Recipient Test|PrevRandao Opcode Transactions Test|Invalid Missing Ancestor ReOrg, StateRoot" - if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - name: Download artifacts uses: actions/download-artifact@v4