aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAlexis Gryta <alexis.gryta@liquid-markets.com>2022-10-24 16:04:39 +0200
committerGerald Combs <gerald@wireshark.org>2022-10-24 18:14:26 +0000
commitce2b9a046a7327564bb77b87e38d46c107d58495 (patch)
tree9bc6f6f7075b30b64e30541a1e00af9cba04aa43 /.gitlab-ci.yml
parentc4b30942d031d9b8ff7286d5b892ecd6999c285c (diff)
.gitlab-ci's variables: as string
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files 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"