From 93a533d732247afcd7b2fa8a3e0b19366a5e7dc3 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 17 Sep 2018 21:32:57 -0700 Subject: 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. --- .appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v1.2.3