From: Martin Quinson Date: Sun, 29 Oct 2023 16:21:23 +0000 (+0100) Subject: Ninja verbose build is not like the Makefile ones X-Git-Tag: v3.35~89^2~35 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/00ce10cac4917f90c61890c96c3dbb538398ab62 Ninja verbose build is not like the Makefile ones --- diff --git a/tools/jenkins/build.sh b/tools/jenkins/build.sh index 3f15e2e5e5..050c850ead 100755 --- a/tools/jenkins/build.sh +++ b/tools/jenkins/build.sh @@ -130,9 +130,11 @@ echo "Branch built is $branch_name" NUMBER_OF_PROCESSORS="$(nproc)" || NUMBER_OF_PROCESSORS=1 GENERATOR="Unix Makefiles" BUILDER=make +VERBOSE_BUILD="VERBOSE=1" if which ninja 2>/dev/null >/dev/null ; then GENERATOR=Ninja BUILDER=ninja + VERBOSE_BUILD="-v" fi ulimit -c 0 || true @@ -222,7 +224,7 @@ cmake -G"$GENERATOR" ${INSTALL:+-DCMAKE_INSTALL_PREFIX=$INSTALL} \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ "$SRCFOLDER" -${BUILDER} -j $NUMBER_OF_PROCESSORS VERBOSE=1 tests +${BUILDER} -j $NUMBER_OF_PROCESSORS ${VERBOSE_BUILD} tests echo "XX" echo "XX Run the tests"