Skip to content

Commit

Permalink
appveyor: don't persist rollup cache in appveyor cache
Browse files Browse the repository at this point in the history
Rollups cache usage has turned out to be unreliable, reusing stale data
that should be regenerated.
  • Loading branch information
piscisaureus committed Sep 18, 2018
1 parent 7553bcb commit 93a533d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,10 @@ test_script:
- ps: Exec { & python tools\test.py $env:DENO_BUILD_PATH }

after_test:
# Delete the the rollup cache, which is unreliable, so that it doesn't get
# persisted in the appveyor cache.
- ps: if (Get-SaveCache) { Delete-Tree "$env:DENO_BUILD_PATH\.rpt2_cache" }

# Remove stale files and empty dirs from the build directory.
- ps: Stop-TraceFilesNeeded

Expand Down

0 comments on commit 93a533d

Please sign in to comment.