From 5cae96f72eb0003f3adf8717e17fcd188d5858b0 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sun, 21 Apr 2024 10:36:19 +0100 Subject: [PATCH] Added verbose flag to ccache command in appimage build --- .ci/linux.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.ci/linux.sh b/.ci/linux.sh index a059f9220..89e109fa8 100755 --- a/.ci/linux.sh +++ b/.ci/linux.sh @@ -24,10 +24,6 @@ ninja if [ "$TARGET" = "appimage" ]; then ninja bundle - # TODO: Our AppImage environment currently uses an older ccache version without the verbose flag. - ccache -s -else - ccache -s -v fi - +ccache -s -v ctest -VV -C Release