From bc4f2365fd8f08846520ca5abc50e2c74e164336 Mon Sep 17 00:00:00 2001 From: silverqx Date: Thu, 15 Aug 2024 00:48:41 +0200 Subject: [PATCH] workflows added comment --- .github/workflows/analyzers.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/analyzers.yml b/.github/workflows/analyzers.yml index 9ecca05c7..99bafe39c 100644 --- a/.github/workflows/analyzers.yml +++ b/.github/workflows/analyzers.yml @@ -3,6 +3,13 @@ # Uses /ccache_vcpkg folder and the compressed cache size is 360M (after whole workflow finishes) # This /ccache_vcpkg folder is common for analyzers.yml and vcpkg-linux.yml workflows # vcpkg-linux.yml takes 205M and analyzers.yml takes 155M +# +# On the Clazy README.md page is written: +# - It's recommended that you disable pre-compiled headers and don't use ccache. +# - Some checks are mysteriously not producing warnings or not applying fixits? +# Check if you have ccache interfering and turn it off. +# +# I'm not using PCH, but I'm using ccache as it doesn't interfere, I have tried it. 🤔 name: Clang-Tidy and Clazy 6.7