From ce2b9a046a7327564bb77b87e38d46c107d58495 Mon Sep 17 00:00:00 2001 From: Alexis Gryta Date: Mon, 24 Oct 2022 16:04:39 +0200 Subject: [PATCH] .gitlab-ci's variables: as string --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 450258260a..9c6e9c7fd6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,13 +18,14 @@ variables: # brighter, more glorious future we might be able to use --shallow-since: # https://gitlab.com/gitlab-org/gitlab-runner/-/issues/3460 # In the mean time, fetching the last 5000 commits does the job. + # Ensure that all variables are string GIT_DEPTH: "1" GIT_FETCH_EXTRA_FLAGS: "--depth=5000" CCACHE_DIR: "${CI_PROJECT_DIR}/ccache" # Preferred version of clang available on wireshark-ubuntu-dev - CLANG_VERSION: 14 + CLANG_VERSION: "14" # Enable color output in CMake, Ninja, and other tools. https://bixense.com/clicolors/ - CLICOLOR_FORCE: 1 + CLICOLOR_FORCE: "1" # Skip irrelevant SAST scanners: SAST_EXCLUDED_ANALYZERS: "brakeman,eslint,security-code-scan,semgrep,spotbugs"