From 0e03682537b9df5015714100a36a4bdc66245dab Mon Sep 17 00:00:00 2001 From: Chris Vest Date: Mon, 9 Nov 2020 15:32:18 +0100 Subject: [PATCH] Smaller output in codeql build (#10787) Motivation: Printing download progress in the build log makes it harder to see what's wrong when the build fails. Modification: Change the maven command to not show transfer progress, also enable batch mode so Maven don't print in colors that we can't see anyway. Result: More concise code analysis build logs. --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 9c5090d007..b37756e378 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -67,7 +67,7 @@ jobs: with: java-version: '11' # The JDK version to make available on the path. - - run: ./mvnw clean package -DskipTests=true + - run: ./mvnw clean package -DskipTests=true -ntp -B - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1