From 0f6d1c6a54df39958da87ac6576d0107addd9d3c Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Mon, 20 Mar 2023 10:41:42 +0100 Subject: [PATCH] Suppress Git clean output in GitLab CI Git clean in GitLab CI can take up to a thousand lines, thus cluttering the output for no good reason. The default GitLab GIT_CLEAN_FLAGS variable is extended with "q" as in "quiet. (cherry picked from commit ddb33a12fc825051714777a1b9c579df184b1abb) --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 09df6ee315..c62af8bd95 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,7 @@ variables: CCACHE_DIR: "/ccache" GIT_DEPTH: 1 + GIT_CLEAN_FLAGS: -ffdxq # The following values may be overwritten in GitLab's CI/CD Variables Settings. BUILD_PARALLEL_JOBS: 6