From ee85c3ab84ed16e15d7ffd05582d3d21dcb4e67e Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 11 Sep 2025 20:34:15 +0200 Subject: [PATCH] build: update to execution-spec-tests v5.0.0 --- build/checksums.txt | 6 +++--- build/ci.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/checksums.txt b/build/checksums.txt index 19a3a5fadd..4d41042690 100644 --- a/build/checksums.txt +++ b/build/checksums.txt @@ -1,9 +1,9 @@ # This file contains sha256 checksums of optional build dependencies. -# version:spec-tests fusaka-devnet-3%40v1.0.0 +# version:spec-tests v5.0.0 # https://github.com/ethereum/execution-spec-tests/releases -# https://github.com/ethereum/execution-spec-tests/releases/download/fusaka-devnet-3%40v1.0.0 -576261e1280e5300c458aa9b05eccb2fec5ff80a0005940dc52fa03fdd907249 fixtures_fusaka-devnet-3.tar.gz +# https://github.com/ethereum/execution-spec-tests/releases/download/v5.0.0 +a5ed96800ca1af0d86fe2ee894861c24eea079bfb83b924f565bb86ba70021d5 fixtures_develop.tar.gz # version:golang 1.25.0 # https://go.dev/dl/ diff --git a/build/ci.go b/build/ci.go index 3856f32925..d7735b7232 100644 --- a/build/ci.go +++ b/build/ci.go @@ -333,7 +333,7 @@ func doTest(cmdline []string) { // downloadSpecTestFixtures downloads and extracts the execution-spec-tests fixtures. func downloadSpecTestFixtures(csdb *download.ChecksumDB, cachedir string) string { ext := ".tar.gz" - base := "fixtures_fusaka-devnet-3" + base := "fixtures_develop" archivePath := filepath.Join(cachedir, base+ext) if err := csdb.DownloadFileFromKnownURL(archivePath); err != nil { log.Fatal(err)