Implement Electra spec v1.5.0-alpha.5 (#6305)

* Implement spec v1.5.0-alpha.5

* Merge remote-tracking branch 'origin/unstable' into spec-1.5.0-alpha.5

* Ignore broken Electra light client tests
This commit is contained in:
Michael Sproul
2024-08-26 21:43:35 +10:00
committed by GitHub
parent 4036da7cfd
commit e09fe5a372
3 changed files with 14 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
TESTS_TAG := v1.5.0-alpha.3
TESTS_TAG := v1.5.0-alpha.5
TESTS = general minimal mainnet
TARBALLS = $(patsubst %,%-$(TESTS_TAG).tar.gz,$(TESTS))

View File

@@ -26,15 +26,15 @@ excluded_paths = [
"tests/.*/.*/ssz_static/Eth1Block/",
"tests/.*/.*/ssz_static/PowBlock/",
# light_client
# "tests/.*/.*/light_client",
"tests/.*/.*/light_client/single_merkle_proof",
"tests/.*/.*/light_client/sync",
"tests/.*/electra/light_client/update_ranking",
# LightClientStore
"tests/.*/.*/ssz_static/LightClientStore",
# LightClientSnapshot
"tests/.*/.*/ssz_static/LightClientSnapshot",
# One of the EF researchers likes to pack the tarballs on a Mac
".*\.DS_Store.*",
".*\\.DS_Store.*",
# More Mac weirdness.
"tests/mainnet/bellatrix/operations/deposit/pyspec_tests/deposit_with_previous_fork_version__valid_ineffective/._meta.yaml",
# bls tests are moved to bls12-381-tests directory
@@ -49,7 +49,8 @@ excluded_paths = [
# TODO(electra) re-enable once https://github.com/sigp/lighthouse/issues/6002 is resolved
"tests/.*/electra/ssz_static/LightClientUpdate",
"tests/.*/electra/ssz_static/LightClientFinalityUpdate",
"tests/.*/electra/ssz_static/LightClientBootstrap"
"tests/.*/electra/ssz_static/LightClientBootstrap",
"tests/.*/electra/merkle_proof",
]