Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: fix appveyor cache failures #10281

Merged
merged 6 commits into from
Feb 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ test_script:
# FIXME: Exclude Appveyor from running `lantern` smoketest until we fix the flake.
- yarn smoke -j=1 --retries=2 a11y errors oopif pwa pwa2 pwa3 dbw redirects seo offline byte perf metrics

on_success:
# Remove module resolution symlinks; this avoids 'Unable to save cache'
# errors when appveyor runs 7z.exe to save the build cache
- yarn unlink lighthouse
- yarn unlink
jayaddison marked this conversation as resolved.
Show resolved Hide resolved

cache:
#- chrome-win32 -> appveyor.yml,package.json
- node_modules -> appveyor.yml,package.json,yarn.lock
Expand Down