Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/config/hive/amsterdam.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Amsterdam (BAL) hive test configuration
# Pinned from ethereum/execution-specs devnets/bal/3 @ 2026-04-14
fixtures: https://github.com/ethereum/execution-spec-tests/releases/download/bal@v5.6.1/fixtures_bal.tar.gz
eels_commit: 5c6e20abf3586f52d9e58393203ca07f2d0151fe
15 changes: 12 additions & 3 deletions .github/workflows/daily_hive_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,20 +110,29 @@ jobs:

# Set custom args defined in Dockerfile to pin execution-spec-tests versions
# See: https://github.com/ethereum/hive/blob/c2dab60f898b94afe8eeac505f60dcde59205e77/simulators/ethereum/eest/consume-rlp/Dockerfile#L4-L8
- name: Load Amsterdam config
id: amsterdam-config
shell: bash
run: |
echo "fixtures=$(yq -r '.fixtures' .github/config/hive/amsterdam.yaml)" >> "$GITHUB_OUTPUT"
echo "eels_commit=$(yq -r '.eels_commit' .github/config/hive/amsterdam.yaml)" >> "$GITHUB_OUTPUT"

- name: Determine hive flags
id: hive-flags
shell: bash
env:
SIMULATION: ${{ matrix.test.simulation }}
SIM_LIMIT: ${{ matrix.test.limit || '' }}
AMSTERDAM_FIXTURES: ${{ steps.amsterdam-config.outputs.fixtures }}
AMSTERDAM_EELS_COMMIT: ${{ steps.amsterdam-config.outputs.eels_commit }}
run: |
FLAGS="--sim.parallelism ${{ matrix.test.parallelism || 4 }} --sim.loglevel 1"
if [[ "$SIMULATION" == "ethereum/eels/consume-engine" || "$SIMULATION" == "ethereum/eels/consume-rlp" ]]; then
# Use fork-specific fixtures to ensure comprehensive test coverage
if [[ "$SIM_LIMIT" == *"fork_Amsterdam"* ]]; then
# Amsterdam tests use fixtures_bal which includes BAL-specific tests
FLAGS+=" --sim.buildarg fixtures=https://github.com/ethereum/execution-spec-tests/releases/download/bal@v5.6.1/fixtures_bal.tar.gz"
FLAGS+=" --sim.buildarg branch=devnets/bal/3"
# Amsterdam config loaded from .github/config/hive/amsterdam.yaml
FLAGS+=" --sim.buildarg fixtures=$AMSTERDAM_FIXTURES"
FLAGS+=" --sim.buildarg branch=$AMSTERDAM_EELS_COMMIT"
else
# All other forks (Prague, Osaka, Cancun, Shanghai, Paris) use fixtures_develop
# which includes comprehensive test coverage including static tests
Expand Down
28 changes: 20 additions & 8 deletions .github/workflows/pr-main_l1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ jobs:
runs-on: ubuntu-latest
needs: [detect-changes, docker_build]
if: ${{ needs.detect-changes.outputs.run_tests == 'true' && github.event_name != 'merge_group' }}
continue-on-error: ${{ matrix.optional || false }}
env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
strategy:
Expand Down Expand Up @@ -233,14 +232,12 @@ jobs:
simulation: ethereum/engine
limit: "engine-withdrawals"
artifact_prefix: engine_withdrawals
# Not required while Amsterdam fork spec is still evolving.
# Remove optional: true once the fork stabilizes.
# Amsterdam config is loaded from .github/config/hive/amsterdam.yaml
- name: "Consume Engine Amsterdam"
simulation: ethereum/eels/consume-engine
limit: ".*(8024|7708|7778|7843|7928|7954|8037).*"
buildarg: "fixtures=https://github.com/ethereum/execution-spec-tests/releases/download/bal@v5.6.1/fixtures_bal.tar.gz branch=devnets/bal/3"
amsterdam: true
artifact_prefix: consume_engine_amsterdam
optional: true
# Investigate this test
# - name: "Sync"
# simulation: ethereum/sync
Expand Down Expand Up @@ -270,21 +267,36 @@ jobs:
echo "EOF"
} >>"$GITHUB_OUTPUT"

- name: Load Amsterdam config
id: amsterdam-config
shell: bash
run: |
echo "fixtures=$(yq -r '.fixtures' .github/config/hive/amsterdam.yaml)" >> "$GITHUB_OUTPUT"
echo "eels_commit=$(yq -r '.eels_commit' .github/config/hive/amsterdam.yaml)" >> "$GITHUB_OUTPUT"

- name: Determine hive flags
id: hive-flags
shell: bash
env:
SIM_LIMIT: ${{ matrix.limit }}
SIM_BUILDARG: ${{ matrix.buildarg }}
AMSTERDAM: ${{ matrix.amsterdam || 'false' }}
AMSTERDAM_FIXTURES: ${{ steps.amsterdam-config.outputs.fixtures }}
AMSTERDAM_EELS_COMMIT: ${{ steps.amsterdam-config.outputs.eels_commit }}
run: |
FLAGS='--sim.parallelism 4 --sim.loglevel 3'
if [[ -n "$SIM_LIMIT" ]]; then
escaped_limit=${SIM_LIMIT//\'/\'\\\'\'}
FLAGS+=" --sim.limit '$escaped_limit'"
fi
for arg in $SIM_BUILDARG; do
FLAGS+=" --sim.buildarg $arg"
done
if [[ "$AMSTERDAM" == "true" ]]; then
FLAGS+=" --sim.buildarg fixtures=$AMSTERDAM_FIXTURES"
FLAGS+=" --sim.buildarg branch=$AMSTERDAM_EELS_COMMIT"
else
for arg in $SIM_BUILDARG; do
FLAGS+=" --sim.buildarg $arg"
done
fi
echo "flags=$FLAGS" >> "$GITHUB_OUTPUT"

- name: Log in to the Container registry
Expand Down
Loading