From 11ff6e769d91a7d072cd0050df0be0ca8bc9175a Mon Sep 17 00:00:00 2001 From: Christopher Hoskin Date: Tue, 21 Nov 2023 14:34:03 +0000 Subject: [PATCH] Merge pull request #15865 from overleaf/csh-multiple-repo-cache Make the `-deps` image cache work with multiple repos GitOrigin-RevId: 83c8350e44721bb01a8533f394bcace2a7bf5d26 --- services/clsi/Makefile | 2 +- services/filestore/Makefile | 2 +- services/spelling/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/clsi/Makefile b/services/clsi/Makefile index a59ff68053..876943cecf 100644 --- a/services/clsi/Makefile +++ b/services/clsi/Makefile @@ -89,7 +89,7 @@ benchmarks: build: docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \ || docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):main-deps \ - || echo 'nothing cached' + || echo 'nothing cached for gcr.io/overleaf-ops' docker build \ --pull \ --build-arg BUILDKIT_INLINE_CACHE=1 \ diff --git a/services/filestore/Makefile b/services/filestore/Makefile index a466367c38..af831c4a8d 100644 --- a/services/filestore/Makefile +++ b/services/filestore/Makefile @@ -89,7 +89,7 @@ benchmarks: build: docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \ || docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):main-deps \ - || echo 'nothing cached' + || echo 'nothing cached for gcr.io/overleaf-ops' docker build \ --pull \ --build-arg BUILDKIT_INLINE_CACHE=1 \ diff --git a/services/spelling/Makefile b/services/spelling/Makefile index dd7200340f..e344f77321 100644 --- a/services/spelling/Makefile +++ b/services/spelling/Makefile @@ -89,7 +89,7 @@ benchmarks: build: docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):$(BRANCH_NAME)-deps \ || docker pull gcr.io/overleaf-ops/$(PROJECT_NAME):main-deps \ - || echo 'nothing cached' + || echo 'nothing cached for gcr.io/overleaf-ops' docker build \ --pull \ --build-arg BUILDKIT_INLINE_CACHE=1 \