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: ci will now fail if a hive test fails #6212

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 1 addition & 28 deletions .github/workflows/hive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,13 @@ jobs:
path: ./artifacts

test:
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
experimental: [true]
sim: [ethereum/rpc, smoke/genesis, smoke/network, ethereum/sync]
include:
- sim: devp2p
limit: discv4
experimental: true
- sim: devp2p
limit: eth
# we have excluded these tests because we do not support block
Expand All @@ -82,25 +80,18 @@ jobs:
- TestMaliciousStatus
- TestTransaction
- TestMaliciousTx
experimental: true
- sim: ethereum/engine
limit: engine-exchange-capabilities
experimental: true
- sim: ethereum/engine
limit: engine-withdrawals
experimental: true
- sim: ethereum/engine
limit: engine-auth
experimental: true
- sim: ethereum/engine
limit: engine-transition
experimental: true
- sim: ethereum/engine
limit: engine-api
experimental: true
- sim: ethereum/engine
limit: cancun
experimental: true
# eth_ rpc methods
- sim: ethereum/rpc-compat
include:
Expand All @@ -120,7 +111,6 @@ jobs:
- eth_getTransactionReceipt
- eth_sendRawTransaction
- eth_syncing
experimental: true
# not running eth_getProof tests because we do not support
# eth_getProof yet
# - sim: ethereum/rpc-compat
Expand All @@ -129,56 +119,39 @@ jobs:
# debug_ rpc methods
- sim: ethereum/rpc-compat
include: [debug_]
experimental: true
# Pyspec cancun jobs
- sim: pyspec
include: [cancun/eip4844]
experimental: true
- sim: pyspec
include: [cancun/eip4788]
experimental: true
- sim: pyspec
include: [cancun/eip6780]
experimental: true
- sim: pyspec
include: [cancun/eip5656]
experimental: true
- sim: pyspec
include: [cancun/eip1153]
experimental: true
- sim: pyspec
include: [cancun/eip7516]
experimental: true
# Pyspec shanghai jobs
- sim: pyspec
include: [shanghai/eip3651]
experimental: true
- sim: pyspec
include: [shanghai/eip3855]
experimental: true
- sim: pyspec
include: [shanghai/eip3860]
experimental: true
- sim: pyspec
include: [shanghai/eip4895]
experimental: true
# Pyspec merge and earlier jobs
- sim: pyspec
include: [merge/]
experimental: true
- sim: pyspec
include: [berlin/]
experimental: true
- sim: pyspec
include: [istanbul/]
experimental: true
- sim: pyspec
include: [homestead/]
experimental: true
- sim: pyspec
include: [frontier/]
experimental: true
fail-fast: false
needs: prepare
name: run
runs-on:
Expand Down
Loading