GitLab CI: Fix format of DEB_BUILD_OPTIONS passed to the Ubuntu build

This commit is contained in:
Balint Reczey 2022-07-21 10:02:44 +02:00 committed by Gerald Combs
parent 18b0c379a3
commit 924076ed29
1 changed files with 1 additions and 1 deletions

View File

@ -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)