From 46f240ce86c1e996b2820a84a60407b512d49b6d Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Wed, 20 Nov 2024 16:17:29 +0000 Subject: [PATCH] fix: rm S3 buildcache support from Makefile --- spack-environment/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/spack-environment/Makefile b/spack-environment/Makefile index 0362629b2..6aa7ab773 100644 --- a/spack-environment/Makefile +++ b/spack-environment/Makefile @@ -7,7 +7,6 @@ export SPACK_COLOR = always SPACK_ENV ?= dev -BUILDCACHE_S3_FINAL := BUILDCACHE_OCI_FINAL := BUILDCACHE_OCI_BASE_IMAGE := ghcr.io/eic/debian:stable-slim @@ -20,8 +19,6 @@ include $(SPACK_ENV)/spack.mk endif $(SPACK_ENV)/push: $(addprefix $(SPACK_ENV)/push/,$($(SPACK_ENV)/SPACK_PACKAGE_IDS)) - $(foreach buildcache, $(BUILDCACHE_S3_FINAL), $(SPACK) buildcache push --private --unsigned $(buildcache) ;) - $(foreach buildcache, $(BUILDCACHE_S3_FINAL), $(SPACK) buildcache update-index $(buildcache) ;) $(foreach buildcache, $(BUILDCACHE_OCI_FINAL), $(SPACK) buildcache push --private --unsigned --base-image $(BUILDCACHE_OCI_BASE_IMAGE) $(buildcache) | grep -v "Using cached archive" ;) $(SPACK_ENV)/push/%: $(SPACK_ENV)/install/% -- GitLab