mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
chore(ci): ignore caching related errors (#4663)
This should reduce failed builds and will slow down build on cache errors.
This commit is contained in:
parent
85e008e01c
commit
b7bcdee7c2
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue