From 06e2ca52867a0d9c1a3359b070d29ace0b39e55c Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 9 Nov 2023 17:45:07 +0300 Subject: [PATCH] don't explicitly filter removed file parsedBeaconState.json from holesky (#5584) --- Makefile | 2 +- ci/Jenkinsfile.benchmarks | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 26c29d38a..dfd991c61 100644 --- a/Makefile +++ b/Makefile @@ -120,7 +120,7 @@ endif # We don't need these `vendor/holesky` files but fetching them # may trigger 'This repository is over its data quota' from GitHub -GIT_SUBMODULE_CONFIG := -c lfs.fetchexclude=/public-keys/all.txt,/custom_config_data/genesis.ssz,/custom_config_data/parsedBeaconState.json +GIT_SUBMODULE_CONFIG := -c lfs.fetchexclude=/public-keys/all.txt,/custom_config_data/genesis.ssz ifeq ($(NIM_PARAMS),) # "variables.mk" was not included, so we update the submodules. diff --git a/ci/Jenkinsfile.benchmarks b/ci/Jenkinsfile.benchmarks index 481b84b42..1e30eb54c 100644 --- a/ci/Jenkinsfile.benchmarks +++ b/ci/Jenkinsfile.benchmarks @@ -23,7 +23,7 @@ node("metal") { /* source code checkout */ checkout scm /* we need to update the submodules before caching kicks in */ - sh "git -c lfs.fetchexclude=/public-keys/all.txt,/custom_config_data/genesis.ssz,/custom_config_data/parsedBeaconState.json submodule update --init --recursive" + sh "git -c lfs.fetchexclude=/public-keys/all.txt,/custom_config_data/genesis.ssz submodule update --init --recursive" } stage("Build") {