From b7bcdee7c24495a48e6f2f6ac19eb722d1ede69d Mon Sep 17 00:00:00 2001 From: Michael Kriese <michael.kriese@visualon.de> Date: Wed, 16 Oct 2019 10:42:11 +0200 Subject: [PATCH] chore(ci): ignore caching related errors (#4663) This should reduce failed builds and will slow down build on cache errors. --- .azure/steps.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/steps.yml b/.azure/steps.yml index 6be70aa329..37d76198e1 100644 --- a/.azure/steps.yml +++ b/.azure/steps.yml @@ -30,6 +30,7 @@ steps: key: yarn_cache | $(Agent.OS) | $(Build.SourcesDirectory)/yarn.lock path: $(YARN_CACHE_FOLDER) displayName: Cache Yarn packages + continueOnError: true # does not work on linux or mac :-( - task: CacheBeta@0 @@ -38,6 +39,7 @@ steps: path: $(Build.SourcesDirectory)/node_modules displayName: Cache node_modules condition: eq(variables['Agent.OS'], 'Windows_NT') + continueOnError: true - bash: | yarn install --frozen-lockfile --link-duplicates -- GitLab