X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/052fffa5ef6cd2b0d1101a77575c48b2ec5adc1e..7180e3eeeaf908fa7591c59ce880b5dbed8fcc07:/buildtools/jenkins/run.sh diff --git a/buildtools/jenkins/run.sh b/buildtools/jenkins/run.sh index c20bdc747a..96f8afb178 100755 --- a/buildtools/jenkins/run.sh +++ b/buildtools/jenkins/run.sh @@ -3,6 +3,15 @@ WORKSPACE=$1 build_mode=$2 +# usage: die status message... +die () { + local status=${1:-1} + shift + [ $# -gt 0 ] || set -- "Error - Halting" + echo "$@" >&2 + exit $status +} + rm -rf $WORKSPACE/build mkdir $WORKSPACE/build @@ -12,93 +21,46 @@ export PATH=./lib/:../../lib:$PATH if test "$(uname -o)" = "Msys" then - cmake -G "MSYS Makefiles" $WORKSPACE + #$NUMBER_OF_PROCESSORS should be already set on win + if [ -z "$NUMBER_OF_PROCESSORS" ]; then + NUMBER_OF_PROCESSORS=1 + fi - if [ $? -ne 0 ] ; then - echo "Failed to do the first cmake - Halting" - exit 1 - fi + cmake -G "MSYS Makefiles" $WORKSPACE || die 1 "Failed to do the first cmake - Halting" - make dist + make dist || die 2 "Failed to build dist - Halting" - if [ $? -ne 0 ] ; then - echo "Failed to build dist - Halting" - exit 2 - fi + cmake -G "MSYS Makefiles" -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=OFF . \ + || die 5 "Failed to perform the Cmake for $build_mode - Halting" - - if [ "$build_mode" = "Debug" ] - then - cmake -G "MSYS Makefiles" -Denable_coverage=ON -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=OFF . - fi + make -j$NUMBER_OF_PROCESSORS || die 5 "Build failure - Halting" - if [ "$build_mode" = "ModelChecker" ] - then - cmake -G "MSYS Makefiles" -Denable_coverage=ON -Denable_java=ON -Denable_smpi=ON -Denable_model-checking=ON -Denable_lua=OFF -Denable_compile_optimizations=OFF -Denable_compile_warnings=OFF . - fi + make nsis || die 6 "Failure while generating the Windows executable - Halting" - if [ "$build_mode" = "DynamicAnalysis" ] - then - cmake -G "MSYS Makefiles" -Denable_lua=OFF -Denable_java=ON -Denable_tracing=ON -Denable_smpi=ON -Denable_compile_optimizations=OFF -Denable_compile_warnings=OFF -Denable_lib_static=OFF -Denable_model-checking=OFF -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF -Denable_mallocators=OFF -Denable_memcheck=ON . - fi - - if [ $? -ne 0 ] ; then - echo "Failed to perform the Cmake for $build_mode - Halting" - exit 5 - fi - - make - - if [ $? -ne 0 ] ; then - echo "Build failure - Halting" - exit 5 - fi +else + # Linux: + cpuinfo_file="/proc/cpuinfo" + NUMBER_OF_PROCESSORS=$(lscpu -p 2>/dev/null | grep -c '^[^#]') || \ + NUMBER_OF_PROCESSORS=$(grep -c "^processor[[:space:]]*:" ${cpuinfo_file} 2>/dev/null) + [ "0$NUMBER_OF_PROCESSORS" -gt 0 ] || NUMBER_OF_PROCESSORS=1 - make nsis - - if [ $? -ne 0 ] ; then - echo "Failure while generating the Windows executable - Halting" - exit 6 - fi - -else - cmake $WORKSPACE - - if [ $? -ne 0 ] ; then - echo "Failed to do the first cmake - Halting" - exit 1 - fi + cmake $WORKSPACE || die 1 "Failed to do the first cmake - Halting" rm Simgrid*.tar.gz - make dist - - if [ $? -ne 0 ] ; then - echo "Failed to build dist - Halting" - exit 2 - fi - - tar xzf `cat VERSION`.tar.gz + make dist || die 2 "Failed to build dist - Halting" - if [ $? -ne 0 ] ; then - echo "Failed to extract the generated tgz - Halting" - exit 3 - fi - - cd `cat VERSION` + tar xzf `cat VERSION`.tar.gz || die 3 "Failed to extract the generated tgz - Halting" - if [ $? -ne 0 ] ; then - echo "Path `cat VERSION` cannot be found - Halting" - exit 4 - fi + cd `cat VERSION` || die 4 "Path `cat VERSION` cannot be found - Halting" if [ "$build_mode" = "Debug" ] then - cmake -Denable_coverage=ON -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=ON -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=ON . + cmake -Denable_coverage=OFF -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=ON -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=ON . fi if [ "$build_mode" = "ModelChecker" ] then - cmake -Denable_coverage=ON -Denable_java=ON -Denable_smpi=ON -Denable_model-checking=ON -Denable_lua=ON -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON . + cmake -Denable_coverage=OFF -Denable_java=ON -Denable_smpi=ON -Denable_model-checking=ON -Denable_lua=ON -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON . fi if [ "$build_mode" = "DynamicAnalysis" ] @@ -106,21 +68,14 @@ else cmake -Denable_lua=OFF -Denable_java=ON -Denable_tracing=ON -Denable_smpi=ON -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON -Denable_lib_static=OFF -Denable_model-checking=OFF -Denable_latency_bound_tracking=OFF -Denable_gtnets=OFF -Denable_jedule=OFF -Denable_mallocators=OFF -Denable_memcheck=ON . fi - if [ $? -ne 0 ] ; then - echo "Failed to perform the Cmake for $build_mode - Halting" - exit 5 - fi - - make - - if [ $? -ne 0 ] ; then - echo "Build failure - Halting" - exit 6 - fi + [ $? -eq 0 ] || die 5 "Failed to perform the Cmake for $build_mode - Halting" + make -j$NUMBER_OF_PROCESSORS || die 6 "Build failure - Halting" fi -ctest -T test --no-compress-output --timeout 100 || true +echo "running tests with $NUMBER_OF_PROCESSORS processors" + +ctest --output-on-failure -T test --no-compress-output --timeout 100 -j$NUMBER_OF_PROCESSORS || true if [ -f Testing/TAG ] ; then xsltproc $WORKSPACE/buildtools/jenkins/ctest2junit.xsl -o "$WORKSPACE/CTestResults.xml" Testing/`head -n 1 < Testing/TAG`/Test.xml fi