From 66b0bc04ce59e82a57af0749d142e8390a618cd8 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Sun, 29 Dec 2019 23:59:09 +0100 Subject: [PATCH] Appveyor: Cache only the CMakeCache file. Caching the entire build folder would overwrite the symlinked Plugins, webadmin etc. --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2be646452..08ca41546 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -93,9 +93,9 @@ for: # Cache for speeding up subsequent builds # ########################################### cache: - - Debug-x64 - - Release-x86 - - Release-x64 + - Debug-x64\CMakeCache.txt + - Release-x86\CMakeCache.txt + - Release-x64\CMakeCache.txt ##################### # Package artifacts #