From e9fe50d6b718e33b316e8d6dbae31fd48e1461d3 Mon Sep 17 00:00:00 2001 From: Colin Hutchinson Date: Thu, 1 Dec 2022 14:04:50 +0000 Subject: [PATCH] fix(arm64): until the cache is trustworthy don't trust it when building arm64 artifacts --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index fc36f327..aedafa69 100644 --- a/Makefile +++ b/Makefile @@ -108,8 +108,12 @@ ifndef AWS_ACCESS_KEY BUILDX=false else ifeq ($(RESTY_IMAGE_TAG),bionic) BUILDX=true + CACHE=false + CACHE_COMMAND=false else ifeq ($(RESTY_IMAGE_TAG),18.04) BUILDX=true + CACHE=false + CACHE_COMMAND=false else ifeq ($(RESTY_IMAGE_BASE),alpine) BUILDX=true endif