From e83c75a9e21c3d598dc2e3ea9dc84eb6edf853d2 Mon Sep 17 00:00:00 2001 From: harryhmc Date: Tue, 25 Jul 2023 13:28:22 +0100 Subject: [PATCH] disable utils caching --- azure/templates/deploy-service.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/azure/templates/deploy-service.yml b/azure/templates/deploy-service.yml index 94dff19bc..ec6fb5c42 100644 --- a/azure/templates/deploy-service.yml +++ b/azure/templates/deploy-service.yml @@ -69,13 +69,13 @@ steps: workingDirectory: "$(SERVICE_DIR)" displayName: "Check for ECS proxy definitions" - - task: s3-cache-action@1 - inputs: - key: poetry | utils | $(UTILS_DIR)/poetry.lock - location: "$(UTILS_DIR)/.venv" - debug: true - alias: 'UtilsPreReq' - displayName: cache utils pre-requisites + # - task: s3-cache-action@1 + # inputs: + # key: poetry | utils | $(UTILS_DIR)/poetry.lock + # location: "$(UTILS_DIR)/.venv" + # debug: true + # alias: 'UtilsPreReq' + # displayName: cache utils pre-requisites - bash: | n=0 @@ -85,7 +85,7 @@ steps: n=$((n+1)) done workingDirectory: "$(UTILS_DIR)" - condition: ne(variables['CacheRestored-UtilsPreReq'], 'true') + # condition: ne(variables['CacheRestored-UtilsPreReq'], 'true') displayName: "Install utils pre-requisites" - bash: |