diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-09-17 21:32:57 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-09-17 22:54:51 -0700 |
commit | 93a533d732247afcd7b2fa8a3e0b19366a5e7dc3 (patch) | |
tree | cb146332968199b2c41d31ffef3fbfdf24d4efc9 | |
parent | 7553bcb74f56878b6e434db327f063fa25981258 (diff) |
appveyor: don't persist rollup cache in appveyor cache
Rollups cache usage has turned out to be unreliable, reusing stale data
that should be regenerated.
-rw-r--r-- | .appveyor.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index fff4738f5..a2e738386 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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 |