Skip to content
Snippets Groups Projects
Commit b7bcdee7 authored by Michael Kriese's avatar Michael Kriese Committed by Rhys Arkins
Browse files

chore(ci): ignore caching related errors (#4663)

This should reduce failed builds and will slow down build on cache errors.
parent 85e008e0
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ steps: ...@@ -30,6 +30,7 @@ steps:
key: yarn_cache | $(Agent.OS) | $(Build.SourcesDirectory)/yarn.lock key: yarn_cache | $(Agent.OS) | $(Build.SourcesDirectory)/yarn.lock
path: $(YARN_CACHE_FOLDER) path: $(YARN_CACHE_FOLDER)
displayName: Cache Yarn packages displayName: Cache Yarn packages
continueOnError: true
# does not work on linux or mac :-( # does not work on linux or mac :-(
- task: CacheBeta@0 - task: CacheBeta@0
...@@ -38,6 +39,7 @@ steps: ...@@ -38,6 +39,7 @@ steps:
path: $(Build.SourcesDirectory)/node_modules path: $(Build.SourcesDirectory)/node_modules
displayName: Cache node_modules displayName: Cache node_modules
condition: eq(variables['Agent.OS'], 'Windows_NT') condition: eq(variables['Agent.OS'], 'Windows_NT')
continueOnError: true
- bash: | - bash: |
yarn install --frozen-lockfile --link-duplicates yarn install --frozen-lockfile --link-duplicates
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment