From ca7bb812f65445f31c96a8b6168d9bae9ccb24b5 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Mon, 27 Sep 2021 23:11:52 -0700 Subject: [PATCH] Meta: Explicitly disable caching in the Sonar Cloud workflow Sonar Cloud raises a warning if this is not Explicitly enabled or disabled, so lets mark it disabled to avoid that. --- .github/workflows/sonar-cloud-static-analysis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sonar-cloud-static-analysis.yml b/.github/workflows/sonar-cloud-static-analysis.yml index 2dd08d26e4c..8a156a27baa 100644 --- a/.github/workflows/sonar-cloud-static-analysis.yml +++ b/.github/workflows/sonar-cloud-static-analysis.yml @@ -42,6 +42,7 @@ jobs: echo "sonar.organization=serenityos" >> ${{ github.workspace }}/sonar-project.properties echo "sonar.cfamily.compile-commands=${{ github.workspace }}/Build/${{ env.SONAR_ANALYSIS_ARCH }}/compile_commands.json" >> ${{ github.workspace }}/sonar-project.properties echo "sonar.cfamily.threads=2" >> ${{ github.workspace }}/sonar-project.properties + echo "sonar.cfamily.cache.enabled=false" >> ${{ github.workspace }}/sonar-project.properties echo "sonar.exclusions=Userland/Libraries/LibWasm/Parser/Parser.cpp" >> ${{ github.workspace }}/sonar-project.properties echo "sonar.host.url=${{ env.SONAR_SERVER_URL }}" >> ${{ github.workspace }}/sonar-project.properties echo "sonar.sources=AK,Build,Userland,Kernel,Meta" >> ${{ github.workspace }}/sonar-project.properties