From 9ba74561b57d958cb8dbb79a8836d615de37bb47 Mon Sep 17 00:00:00 2001
From: niansa <anton-sa@web.de>
Date: Wed, 13 Mar 2024 20:30:50 +0000
Subject: [PATCH] Disable ccache in Windows CI as it does not function properly

---
 .ci/scripts/windows/docker.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh
index 0dc68f088c..f95092989d 100755
--- a/.ci/scripts/windows/docker.sh
+++ b/.ci/scripts/windows/docker.sh
@@ -7,7 +7,7 @@ set -e
 
 #cd /suyu
 
-wine ccache.exe -sv
+#wine ccache.exe -sv
 
 mkdir -p build && cd build
 wine cmake.exe .. \
@@ -16,13 +16,13 @@ wine cmake.exe .. \
     -DDISPLAY_VERSION="$1" \
     -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=OFF \
     -DENABLE_QT_TRANSLATION=OFF \
-    -DUSE_CCACHE=ON \
+#    -DUSE_CCACHE=ON \
     -DENABLE_LIBUSB=NO \
     -DSUYU_TESTS=OFF \
     -GNinja
 wine ninja.exe suyu suyu-cmd
 
-wine ccache.exe -sv
+#wine ccache.exe -sv
 
 echo "Tests skipped"
 # TODO: actually run the tests
-- 
GitLab