From b546f31e7057c7d41dc4c8fb3f9865b9a41ae098 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Mon, 27 Mar 2023 14:12:31 +0200 Subject: [PATCH] build: windows can do .tar.gz --- build/ci.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build/ci.go b/build/ci.go index ed4df22558..dd1b4b2517 100644 --- a/build/ci.go +++ b/build/ci.go @@ -341,12 +341,7 @@ func downloadSpecTestFixtures(cachedir string) string { csdb := build.MustLoadChecksums("build/checksums.txt") ext := ".tar.gz" - if runtime.GOOS == "windows" { - // TODO (MariusVanDerWijden) enable windows tests once spec tests provide a .zip - return "" - ext = ".zip" - } - base := "fixtures" + base := "fixtures" // TODO(MariusVanDerWijden) rename once the version becomes part of the filename url := fmt.Sprintf("https://github.com/ethereum/execution-spec-tests/releases/download/v%s/%s%s", version, base, ext) archivePath := filepath.Join(cachedir, base+ext) if err := csdb.DownloadFile(url, archivePath); err != nil {