-
Notifications
You must be signed in to change notification settings - Fork 52
/
build.sh
executable file
·579 lines (518 loc) · 18.9 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
#!/usr/bin/env bash
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o errexit -o pipefail -o noclobber -o nounset
if [[ ${DEBUG_BUILD_SCRIPT:-} -eq 1 ]]; then
set -x
fi
if [[ -t 0 ]]; then
DOCKER_ARGS=-it
fi
ABSPATH=`realpath ${0}`
DIR=$(dirname ${ABSPATH})
PROJECT=$(basename ${DIR})
REMOTE_DIR=/workspaces/${PROJECT}
NPROC=${NPROC:-$(echo $([ -n "$(command -v nproc)" ] && echo $(nproc) || echo 4))}
STATIC_ANALYSIS_MODE_OFF=0
STATIC_ANALYSIS_MODE_ON=1
DCGM_SKIP_PYTHON_LINTING=${DCGM_SKIP_PYTHON_LINTING:-0}
function die() {
echo "$@" >&2
exit 1
}
function usage() {
echo "Buildscript for the DCGM project
Usage: ${0} [options] [-- [any additional cmake arguments]]
Where options are:
-d --debug : Make debug build of the DCGM
-r --release : Make release build of the DCGM
--coverage : Generated build dumps coverage information
-p --packages : Generate tar.gz packages once the build is done
--deb : Generate *.deb packages once the build is done
--rpm : Generate *.rpm packages once the build is done
-c --clean : Make clean rebuild
-a --arch <arch> : Make build for specified architecture. Supported are: amd64, ppc64le, aarch64
-n --no-tests : Do not run build-time tests
--no-install : Do not perform local installation to the _out directory
--sa-mode <mode> : Run static analysis on build. <mode> := 0|1
--address-san : Turn on AddressSanitizer
--thread-san : Turn on ThreadSanitizer
--ub-san : Turn on UndefinedSanitizer
--leak-san : Turn on LeakSanitizer
--vmware : Make vmware build of the DCGM
-h --help : This information
Default options are: --release --arch amd64
Example: ${0} --release --debug --arch amd64 --arch ppc --clean --packages
That will build both debug and release binaries for amd64 and ppc64le architectures
and make .tar.gz packages. Output directories will be deleted before builds.
Example: ${0} --debug -- -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
The following ENV VARIABLES may be defined:
DCGM_DOCKER_IMAGE : Overrides docker image that will be used for build
NPROC : Specifies number of parallel builds allowed. Equals to -jNPROC
DCGM_SKIP_PYTHON_LINTING : Set to 1 if you do not want running pylint after each build
Note: Sanitizers (--*-san) will turn off static linking with libstdc++ and non-test packages
will be disabled as well. Testing packages will contain shared libstdc++ and corresponding
sanitizer libraries next to the DCGM executables in /usr/share/dcgm_tests/apps/amd64.
Please also reference https://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html for
sanitizers compatibility."
}
function setup_build_env() {
local arch=${1:-amd64}; shift;
case ${arch} in
amd64)
export TARGET=x86_64-linux-gnu
;;
ppc64le)
export TARGET=powerpc64le-linux-gnu
;;
aarch64)
export TARGET=aarch64-linux-gnu
;;
*)
die "Unsupported architecture"
;;
esac
export CROSS_PREFIX=/opt/cross
export TOOLSET_PREFIX=${CROSS_PREFIX}/${TARGET}
export CC=${CROSS_PREFIX}/bin/${TARGET}-gcc
export CPP=${CROSS_PREFIX}/bin/${TARGET}-cpp
export CXX=${CROSS_PREFIX}/bin/${TARGET}-g++
export LD=${CROSS_PREFIX}/bin/${TARGET}-ld
export AS=${CROSS_PREFIX}/bin/${TARGET}-as
}
function run_cmake() {
local output_dir=${1}; shift
local clean_build=${1:-0}; shift || true
local packs=${1:-0}; shift || true
local install_prefix=${1:-}; shift || true
local runtests=${1:-1}; shift || true
local static_analysis=${1:-${STATIC_ANALYSIS_MODE_OFF}}; shift || true
local makedeb=${1:-0}; shift || true
local makerpm=${1:-0}; shift || true
local address_san=${1:-0}; shift || true
local thread_san=${1:-0}; shift || true
local ub_san=${1:-0}; shift || true
local leak_san=${1:-0}; shift || true
local vmware=${1:-0}; shift || true
if [[ ${static_analysis} -ge ${STATIC_ANALYSIS_MODE_ON} ]] && [[ ! -f /coverity/bin/cov-build ]]; then
echo "[WARNING] Could not find Coverity. Disabling static analysis" >&2
static_analysis=${STATIC_ANALYSIS_MODE_OFF}
fi
local cmake_install_prefix=""
if [ -n "${install_prefix}" ]; then
cmake_install_prefix="-DCMAKE_INSTALL_PREFIX=${install_prefix}"
fi
if [[ ${clean_build} -eq 1 ]]; then
rm -rf ${output_dir} || true
fi
mkdir -p ${output_dir}
pushd ${output_dir}
local BUILD_TESTING=""
if [[ ${runtests} -eq 0 ]]; then
BUILD_TESTING="-DBUILD_TESTING=OFF"
fi
local CMAKE_COMMON_ARGS=""
if [[ ${address_san} -eq 1 ]]; then
CMAKE_COMMON_ARGS+="-DADDRESS_SANITIZER=ON "
fi
if [[ ${thread_san} -eq 1 ]]; then
CMAKE_COMMON_ARGS+="-DTHREAD_SANITIZER=ON "
fi
if [[ ${ub_san} -eq 1 ]]; then
CMAKE_COMMON_ARGS+="-DUB_SANITIZER=ON "
fi
if [[ ${leak_san} -eq 1 ]]; then
CMAKE_COMMON_ARGS+="-DLEAK_SANITIZER=ON "
fi
if [[ ${vmware} -eq 1 ]]; then
CMAKE_COMMON_ARGS+="-DVMWARE=1 "
fi
if ( command -v ninja >/dev/null ); then
CMAKE_COMMON_ARGS+="-G Ninja "
fi
CMAKE_COMMON_ARGS+="-DCMAKE_TOOLCHAIN_FILE=${DIR}/cmake/${TARGET}-toolchain.cmake ${BUILD_TESTING} ${cmake_install_prefix:-}"
CMAKE_ARGS="${CMAKE_COMMON_ARGS} ${DIR} $@"
local cov_emit_dir="$(pwd)/cov_emit_dir"
local cov_config_args="--config ${cov_emit_dir}/config/coverity-config.xml"
local build_cmd_prefix=""
if [[ ${static_analysis} -ge $STATIC_ANALYSIS_MODE_ON ]]; then
export PATH=/coverity/bin:$PATH
build_cmd_prefix="cov-build ${cov_config_args} --dir ${cov_emit_dir}"
mkdir -p ${cov_emit_dir}/config
cov-configure ${cov_config_args} --template --comptype gcc --compiler x86_64-linux-gnu-gcc
cov-configure ${cov_config_args} --template --comptype g++ --compiler x86_64-linux-gnu-g++
fi
cmake -UDCGM_LIB_INSTALL_PREFIX -UDCGM_PACKAGING -UDCGM_PACKAGING_ENGINE ${CMAKE_ARGS}
${build_cmd_prefix} cmake --build . -j${NPROC}
if [[ ${static_analysis} -ge $STATIC_ANALYSIS_MODE_ON ]]; then
# Sometimes Coverity leaves its emits in a locked state. Try to analyze them anyway
rm -f ${cov_emit_dir}/output/*.lock 2>/dev/null || true
cov-analyze ${cov_config_args} -j auto --dir ${cov_emit_dir} --allow-unmerged-emits \
@@${DIR}/dcgm_private/scripts/coverity_analysis_checkers.txt \
|| true # This fails if there are no new compilation units (incremental build). Patch over failure
rm -rf ${cov_emit_dir}/html 2>/dev/null || true
cov-format-errors --dir ${cov_emit_dir} --html-output ${cov_emit_dir}/html || true
fi
cp compile_commands.json ${DIR}/
if [[ ${runtests} -eq 1 ]]; then
if [[ ${DCGM_SKIP_PYTHON_LINTING:-0} == 0 ]]; then
echo "Linting Python code"
(cd "${DIR}/testing/python3" && PYLINTHOME="$output_dir/pylint_out" pylint --rcfile pylintrc $(find . -type f -a -iname '*.py'))
fi
ctest --output-on-failure
fi
if [[ -n "${install_prefix}" ]]; then
cmake --build . --target install
fi
if [[ ${packs} -eq 1 ]]; then
cpack -G TGZ
if [[ ! ${vmware} -eq 1 ]]; then
pushd dcgm_config
cmake ${CMAKE_COMMON_ARGS} . "$@"
cpack -G TGZ
mv *.tar.gz ${output_dir}
popd
fi
fi
if [[ ${makedeb} -eq 1 ]]; then
cmake -DDCGM_PACKAGING=TRUE -DDCGM_PACKAGING_ENGINE=DEB -DDCGM_LIB_INSTALL_PREFIX=lib/${TARGET} ${CMAKE_ARGS}
cmake --build . -j${NPROC}
cpack -G DEB
if [[ ! ${vmware} -eq 1 ]]; then
pushd dcgm_config
cmake ${CMAKE_COMMON_ARGS} . "$@"
cmake --build . -j${NPROC}
cpack -G DEB
mv *.deb ${output_dir}
popd
fi
fi
if [[ ${makerpm} -eq 1 ]]; then
cmake -DDCGM_PACKAGING=TRUE -DDCGM_PACKAGING_ENGINE=RPM -DDCGM_LIB_INSTALL_PREFIX=lib64 ${CMAKE_ARGS}
cmake --build . -j${NPROC}
cpack -G RPM
if [[ ! ${vmware} -eq 1 ]]; then
pushd dcgm_config
cmake ${CMAKE_COMMON_ARGS} . "$@"
cmake --build . -j${NPROC}
cpack -G RPM
mv *.rpm ${output_dir}
popd
fi
fi
popd
}
function install_lfs() {
local is_lfs_installed=$(git config --local --get filter.lfs.smudge > /dev/null; echo $?)
if [[ ! ${is_lfs_installed} -eq 0 ]]; then
echo 'Installing git-lfs locally'
git-lfs install --local
fi
git lfs pull
}
function dcgm_build_within_docker() {
local debug=${1}; shift
local release=${1}; shift
local coverage=${1}; shift
local arch=${1}; shift
local packs=${1}; shift
local clean=${1}; shift
local runtests=${1}; shift
local static_analysis=${1}; shift
local noinstall=${1}; shift
local makedeb=${1}; shift
local makerpm=${1}; shift
local address_san=${1}; shift
local thread_san=${1}; shift
local ub_san=${1}; shift
local leak_san=${1}; shift
local vmware=${1}; shift
case $( echo "${arch}" | awk '{print tolower($0)}' ) in
amd64|x64|x86_64)
arch=amd64
;;
ppc64le|ppc|ppc64)
arch=ppc64le
;;
aarch64|arm|arm64)
arch=aarch64
;;
*)
echo "Unknown architecture: ${arch}"
exit 1
;;
esac
setup_build_env ${arch}
install_lfs
if [ -x dcgm_private ]; then
pushd dcgm_private
install_lfs
popd
fi
if [[ ${vmware} -eq 1 ]]; then
local debug_suffix=VMware-${arch}-debug
local release_suffix=VMware-${arch}-release
else
local debug_suffix=Linux-${arch}-debug
local release_suffix=Linux-${arch}-release
fi
local cwd=$(pwd)
local outdir_debug=${cwd}/_out/build/${debug_suffix}
local outdir_release=${cwd}/_out/build/${release_suffix}
local cmake_args=""
if [[ ${coverage} -eq 1 ]]; then
cmake_args=${cmake_args}" -DDCGM_BUILD_COVERAGE=1"
fi
local install_prefix=""
if [[ ${debug} -eq 1 ]]; then
mkdir -p ${cwd}/_out/${debug_suffix}
if [[ ${noinstall} -eq 0 ]]; then
install_prefix=${cwd}/_out/${debug_suffix}
fi
run_cmake ${outdir_debug} ${clean} ${packs} "${install_prefix}" ${runtests} ${static_analysis} ${makedeb} ${makerpm} \
${address_san} ${thread_san} ${ub_san} ${leak_san} ${vmware} ${cmake_args} -DCMAKE_BUILD_TYPE=Debug "$@"
find ${outdir_debug} -maxdepth 1 -iname '*.tar.gz' -exec mv {} ${cwd}/_out/${debug_suffix}/ \;
find ${outdir_debug} -maxdepth 1 -iname '*.deb' -exec mv {} ${cwd}/_out/${debug_suffix}/ \;
find ${outdir_debug} -maxdepth 1 -iname '*.rpm' -exec mv {} ${cwd}/_out/${debug_suffix}/ \;
find ${outdir_debug} -maxdepth 1 -iname '*rt.props' -exec cp -fv {} ${cwd}/_out/${debug_suffix}/ \;
fi
if [[ ${release} -eq 1 ]]; then
mkdir -p ${cwd}/_out/${release_suffix}
if [[ ${noinstall} -eq 0 ]]; then
install_prefix=${cwd}/_out/${release_suffix}
fi
run_cmake ${outdir_release} ${clean} ${packs} "${install_prefix}" ${runtests} ${static_analysis} ${makedeb} ${makerpm} \
${address_san} ${thread_san} ${ub_san} ${leak_san} ${vmware} ${cmake_args} -DCMAKE_BUILD_TYPE=Release "$@"
find ${outdir_release} -maxdepth 1 -iname '*.tar.gz' -exec mv {} ${cwd}/_out/${release_suffix}/ \;
find ${outdir_release} -maxdepth 1 -iname '*.deb' -exec mv {} ${cwd}/_out/${release_suffix}/ \;
find ${outdir_release} -maxdepth 1 -iname '*.rpm' -exec mv {} ${cwd}/_out/${release_suffix}/ \;
find ${outdir_release} -maxdepth 1 -iname '*rt.props' -exec cp -fv {} ${cwd}/_out/${release_suffix}/ \;
fi
}
function dcgm_build_using_docker() {
local debug=${1}; shift
local release=${1}; shift
local coverage=${1}; shift
local arch=${1}; shift
local packs=${1}; shift
local clean=${1}; shift
local runtests=${1}; shift
local static_analysis=${1}; shift
local noinstall=${1}; shift
local makedeb=${1}; shift
local makerpm=${1}; shift
local address_san=${1}; shift
local thread_san=${1}; shift
local ub_san=${1}; shift
local leak_san=${1}; shift
local vmware=${1}; shift
local static_analysis_mount=""
if [[ ${static_analysis} -ge ${STATIC_ANALYSIS_MODE_ON} ]]; then
static_analysis_mount="--mount source=dcgm_coverity,target=/coverity"
fi
local dcgm_docker_image=$($(dirname $(realpath "${0}"))/intodocker.sh -n -a ${arch})
local remote_args="--arch ${arch} --sa-mode ${static_analysis}"
if [[ ${debug} -eq 1 ]]; then
remote_args="${remote_args} --debug"
fi
if [[ ${release} -eq 1 ]]; then
remote_args="${remote_args} --release"
fi
if [[ ${coverage} -eq 1 ]]; then
remote_args="${remote_args} --coverage"
fi
if [[ ${packs} -eq 1 ]]; then
remote_args="${remote_args} --packages"
fi
if [[ ${clean} -eq 1 ]]; then
remote_args="${remote_args} --clean"
fi
if [[ ${runtests} -eq 0 ]]; then
remote_args="${remote_args} --no-tests"
fi
if [[ ${makedeb} -eq 1 ]]; then
remote_args="${remote_args} --deb"
fi
if [[ ${makerpm} -eq 1 ]]; then
remote_args="${remote_args} --rpm"
fi
if [[ ${noinstall} -eq 1 ]]; then
remote_args="${remote_args} --no-install"
fi
if [[ ${address_san} -eq 1 ]]; then
remote_args="${remote_args} --address-san"
fi
if [[ ${thread_san} -eq 1 ]]; then
remote_args="${remote_args} --thread-san"
fi
if [[ ${ub_san} -eq 1 ]]; then
remote_args="${remote_args} --ub-san"
fi
if [[ ${leak_san} -eq 1 ]]; then
remote_args="${remote_args} --leak-san"
fi
if [[ ${vmware} -eq 1 ]]; then
remote_args="${remote_args} --vmware"
fi
docker run --rm -u "$(id -u)":"$(id -g)" \
${DOCKER_ARGS:-} \
-v "${DIR}":"${REMOTE_DIR}" \
-v /run/docker.sock:/run/docker.sock:rw \
-w "${REMOTE_DIR}" \
${static_analysis_mount} \
-e "DCGM_BUILD_INSIDE_DOCKER=1" \
-e "DEBUG_BUILD_SCRIPT=${DEBUG_BUILD_SCRIPT:-0}" \
-e "NPROC=${NPROC}" \
-e "BUILD_NUMBER=${BUILD_NUMBER:-}" \
-e "PRINT_UNCOMMITTED_CHANGES=${PRINT_UNCOMMITTED_CHANGES:-}" \
-e "DCGM_SKIP_PYTHON_LINTING=${DCGM_SKIP_PYTHON_LINTING:-}" \
${dcgm_docker_image} \
bash -c "set -ex; ./build.sh ${remote_args} -- $@"
}
TARGET_ARCH=()
DEBUG_BUILD=0
RELEASE_BUILD=0
COVERAGE_BUILD=0
PACKAGES_BUILD=0
CLEAN_BUILD=0
RUN_TESTS=1
STATIC_ANALYSIS=${STATIC_ANALYSIS_MODE_OFF}
MAKE_DEB=0
MAKE_RPM=0
NO_INSTALL=0
ADDRESS_SANITIZER=0
THREAD_SANITIZER=0
UB_SANITIZER=0
LEAK_SANITIZER=0
VMWAREBUILD=0
LONGOPTS=debug,release,coverage,arch:,packages,clean,help,no-tests,sa-mode:,deb,rpm,no-install,address-san,thread-san,ub-san,leak-san,vmware
SHORTOPTS=dra:pchn
! PARSED=$(getopt --options=${SHORTOPTS} --longoptions=${LONGOPTS} --name "${0}" -- "$@")
if [[ ${PIPESTATUS[0]} -ne 0 ]]; then
echo "Failed to parse arguments"
exit 1
fi
eval set -- "${PARSED}"
while true; do
case "${1}" in
-d|--debug)
DEBUG_BUILD=1
shift
;;
-r|--release)
RELEASE_BUILD=1
shift
;;
--coverage)
COVERAGE_BUILD=1
shift
;;
-a|--arch)
TARGET_ARCH+=("${2}")
shift 2
;;
-p|--packages)
PACKAGES_BUILD=1
shift
;;
-c|--clean)
CLEAN_BUILD=1
shift
;;
-n|--no-tests)
RUN_TESTS=0
shift
;;
--sa-mode)
case $(echo "${2}" | awk '{print tolower($0)}') in
${STATIC_ANALYSIS_MODE_OFF})
STATIC_ANALYSIS=${STATIC_ANALYSIS_MODE_OFF}
;;
${STATIC_ANALYSIS_MODE_ON})
STATIC_ANALYSIS=${STATIC_ANALYSIS_MODE_ON}
;;
*)
echo "Unknown static analysis mode: ${2}"
exit 1
;;
esac
shift 2
;;
-h|--help)
usage
exit 0
;;
--deb)
MAKE_DEB=1
shift
;;
--rpm)
MAKE_RPM=1
shift
;;
--no-install)
NO_INSTALL=1
shift
;;
--address-san)
ADDRESS_SANITIZER=1
#CLEAN_BUILD=1
shift
;;
--thread-san)
THREAD_SANITIZER=1
#CLEAN_BUILD=1
shift
;;
--ub-san)
UB_SANITIZER=1
CLEAN_BUILD=1
shift
;;
--leak-san)
LEAK_SANITIZER=1
CLEAN_BUILD=1
shift
;;
--vmware)
VMWAREBUILD=1
shift
;;
--)
shift
break
;;
*)
echo "Wrong arguments"
exit 1
;;
esac
done
if [[ ${DEBUG_BUILD} -eq 0 ]] && [[ ${RELEASE_BUILD} -eq 0 ]]; then
RELEASE_BUILD=1
fi
if [[ ${#TARGET_ARCH[@]} -eq 0 ]]; then
TARGET_ARCH+=(amd64)
fi
for arch in "${TARGET_ARCH[@]}"; do
if [[ ${DCGM_BUILD_INSIDE_DOCKER:-} -eq 1 ]]; then
dcgm_build_within_docker ${DEBUG_BUILD} ${RELEASE_BUILD} ${COVERAGE_BUILD} "${arch}" \
${PACKAGES_BUILD} ${CLEAN_BUILD} ${RUN_TESTS} ${STATIC_ANALYSIS} ${NO_INSTALL} ${MAKE_DEB} ${MAKE_RPM} \
${ADDRESS_SANITIZER} ${THREAD_SANITIZER} ${UB_SANITIZER} ${LEAK_SANITIZER} ${VMWAREBUILD} "$@"
else
dcgm_build_using_docker ${DEBUG_BUILD} ${RELEASE_BUILD} ${COVERAGE_BUILD} "${arch}" \
${PACKAGES_BUILD} ${CLEAN_BUILD} ${RUN_TESTS} ${STATIC_ANALYSIS} ${NO_INSTALL} ${MAKE_DEB} ${MAKE_RPM} \
${ADDRESS_SANITIZER} ${THREAD_SANITIZER} ${UB_SANITIZER} ${LEAK_SANITIZER} ${VMWAREBUILD} "$@"
fi
done