From: Augustin Degomme Date: Tue, 14 May 2019 10:02:37 +0000 (+0200) Subject: apparently sunos illumos make/dmake does not like make -jx syntax X-Git-Tag: v3.22.4~127^2~35 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d532190f4263d3bf8d662e05a5d0e60b17b8f24e?ds=sidebyside apparently sunos illumos make/dmake does not like make -jx syntax --- diff --git a/tools/jenkins/build.sh b/tools/jenkins/build.sh index e05907ff2f..9518ae7edf 100755 --- a/tools/jenkins/build.sh +++ b/tools/jenkins/build.sh @@ -163,7 +163,7 @@ echo "XX pwd: "$(pwd) echo "XX" cmake -G"$GENERATOR" -Denable_documentation=OFF $WORKSPACE -make dist -j$NUMBER_OF_PROCESSORS +make dist -j $NUMBER_OF_PROCESSORS SIMGRID_VERSION=$(cat VERSION) echo "XX" @@ -211,7 +211,7 @@ cmake -G"$GENERATOR" ${INSTALL:+-DCMAKE_INSTALL_PREFIX=$INSTALL} \ # -Denable_lua=$(onoff test "$build_mode" != "DynamicAnalysis") \ set +x -make -j$NUMBER_OF_PROCESSORS VERBOSE=1 tests +make -j $NUMBER_OF_PROCESSORS VERBOSE=1 tests echo "XX" echo "XX Run the tests"