jenkins: add 'make V=1' for more verbose build logs

In the logs, it is nice to see whether e.g. sanitize or -Werror args actually
made it to the gcc command line. With V=1 we see the complete command
invocations that would be hidden otherwise.

Change-Id: Ie89b1c39489ba80fb47716f4c747f2c85960e32e
This commit is contained in:
Neels Hofmeyr 2017-11-17 01:17:47 +01:00 committed by Harald Welte
parent a5e2162cf1
commit 901c197881
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ build() {
prep_build "$src_dir" "$build_dir"
"$src_dir"/configure --enable-static $ENABLE_SANITIZE CFLAGS="-Werror" CPPFLAGS="-Werror"
$MAKE $PARALLEL_MAKE check \
$MAKE V=1 $PARALLEL_MAKE check \
|| cat-testlogs.sh
}