aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBalint Reczey <balint@balintreczey.hu>2022-07-21 10:02:44 +0200
committerGerald Combs <gerald@wireshark.org>2022-07-21 18:03:56 +0000
commit924076ed29a28a4494de61a69c731546eaacbd33 (patch)
tree43664e760ebe72a3b3e8e090d4506739e21d4482 /.gitlab-ci.yml
parent18b0c379a38fdaceb6129a399c5be4f6942e80a2 (diff)
GitLab CI: Fix format of DEB_BUILD_OPTIONS passed to the Ubuntu build
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 368277f158..451cb2ba54 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -108,7 +108,7 @@ variables:
- export PYTEST_ADDOPTS=--skip-missing-programs=dumpcap,rawshark
- mkdir -p ccache
- ccache --show-stats
- - export DEB_BUILD_OPTIONS=nocheck,parallel=$(( $(getconf _NPROCESSORS_ONLN) + 2 ))
+ - export DEB_BUILD_OPTIONS="nocheck parallel=$(( $(getconf _NPROCESSORS_ONLN) + 2 ))"
- export DH_QUIET=1
- export MAKEFLAGS=--silent
- NUM_COMMITS=$(curl $CI_API_V4_URL/projects/$CI_PROJECT_ID/merge_requests/$CI_MERGE_REQUEST_IID/commits | jq length)