X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a4a0f13a2547b37b1eab2a9ecfc1f95a3426a37..53b22d08843a4252c2abe0e074f8c1e6e34db9ff:/tools/jenkins/build.sh diff --git a/tools/jenkins/build.sh b/tools/jenkins/build.sh index 0bad846ad9..5d7951c3b0 100755 --- a/tools/jenkins/build.sh +++ b/tools/jenkins/build.sh @@ -2,7 +2,7 @@ # This script is used by various build projects on Jenkins -# See https://ci.inria.fr/simgrid/job/SimGrid-Multi/configure +# See https://ci.inria.fr/simgrid/job/SimGrid/configure # See https://ci.inria.fr/simgrid/job/Simgrid-Windows/configure set -e @@ -12,8 +12,9 @@ export LC_ALL=C echo "XXXX Cleanup previous attempts. Remaining content of /tmp:" rm -rf /tmp/simgrid-java* +rm -rf /var/tmp/simgrid-java* rm -rf /tmp/jvm-* -find /builds/workspace/SimGrid-Multi/ -name "hs_err_pid*.log" | xargs rm -f +find /builds/workspace/SimGrid/ -name "hs_err_pid*.log" -exec rm -f {} + ls /tmp df -h echo "XXXX Let's go" @@ -26,7 +27,7 @@ fi # usage: die status message... die () { - local status=${1:-1} + status=${1:-1} shift [ $# -gt 0 ] || set -- "Error - Halting" echo "$@" >&2 @@ -42,23 +43,75 @@ onoff() { fi } -# Check that we have what we need, or die quickly. -# The paths are not the same on all platforms, unfortunately. -#test -e /bin/tar || die 1 "I need tar to compile. Please fix your slave." -#test -e /bin/gzip || die 1 "I need gzip to compile. Please fix your slave." -#test -e /usr/include/libunwind.h || die 1 "I need libunwind to compile. Please fix your slave." -#test -e /usr/include/valgrind/valgrind.h || die 1 "I need valgrind to compile. Please fix your slave." +if type lsb_release >/dev/null 2>&1; then # recent versions of Debian/Ubuntu + # linuxbase.org + os=$(lsb_release -si) + ver="$(lsb_release -sr) ($(lsb_release -sc))" +elif [ -f /etc/lsb-release ]; then # For some versions of Debian/Ubuntu without lsb_release command + . /etc/lsb-release + os=$DISTRIB_ID + ver=$DISTRIB_RELEASE +elif [ -f /etc/debian_version ]; then # Older Debian/Ubuntu/etc. + os=Debian + ver=$(cat /etc/debian_version) +elif [ -f /etc/redhat-release ]; then #RH, Fedora, Centos + read -r os ver < /etc/redhat-release +elif [ -f /usr/bin/sw_vers ]; then #osx + os=$(sw_vers -productName) + ver=$(sw_vers -productVersion) +elif [ -f /bin/freebsd-version ]; then #freebsd + os=$(uname -s) + ver=$(freebsd-version -u) +elif [ -f /etc/release ]; then #openindiana + read -r os ver < /etc/release +elif [ -f /etc/os-release ]; then # freedesktop.org and systemd, put last as usually missing useful info + . /etc/os-release + os=$NAME + ver=$VERSION_ID +else + # Fall back to uname, e.g. "Linux ", also works for BSD, etc. + echo "fallback as OS name not found" + os=$(uname -s) + ver=$(uname -r) +fi + +# Are we running on wsl ? +if [ -f /mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe ]; then + #To identify the windows underneath the linux + PATH="/mnt/c/Windows/System32/WindowsPowerShell/v1.0/:$PATH" + major=$(powershell.exe -command "[environment]::OSVersion.Version.Major" | sed 's/\r//g') + build=$(powershell.exe -command "[environment]::OSVersion.Version.Build"| sed 's/\r//g') + ver="$major v$build - WSL $os $ver" + os=Windows +fi + +case $(uname -m) in +x86_64) + bits="64 bits" + ;; +i*86) + bits="32 bits" + ;; +*) + bits="" + ;; +esac +echo "OS Version : $os $ver $bits" + build_mode="$1" echo "Build mode $build_mode on $(uname -np)" >&2 case "$build_mode" in "Debug") + INSTALL="/builds/simgrid_install" ;; "ModelChecker") + INSTALL="/builds/mc_simgrid_install" ;; "DynamicAnalysis") + INSTALL="" ;; *) @@ -66,6 +119,13 @@ case "$build_mode" in ;; esac +if [ "$2" = "" ]; then + branch_name="unknown" +else + branch_name="$2" +fi +echo "Branch built is $branch_name" + NUMBER_OF_PROCESSORS="$(nproc)" || NUMBER_OF_PROCESSORS=1 GENERATOR="Unix Makefiles" @@ -97,7 +157,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" @@ -105,9 +165,8 @@ echo "XX Open the resulting archive" echo "XX" gunzip ${SIMGRID_VERSION}.tar.gz tar xf ${SIMGRID_VERSION}.tar -cd ${SIMGRID_VERSION} -mkdir build -cd build +mkdir ${WORKSPACE}/build/${SIMGRID_VERSION}/build +cd ${WORKSPACE}/build/${SIMGRID_VERSION}/build SRCFOLDER="${WORKSPACE}/build/${SIMGRID_VERSION}" echo "XX" @@ -115,12 +174,23 @@ echo "XX Configure and build SimGrid" echo "XX pwd: "$(pwd) echo "XX" set -x -if [ "$build_mode" = "ModelChecker" ] ; then - INSTALL="-DCMAKE_INSTALL_PREFIX=/builds/mc_simgrid_install" -elif [ "$build_mode" = "Debug" ] ; then - INSTALL="-DCMAKE_INSTALL_PREFIX=/builds/simgrid_install" + +if cmake --version | grep -q 3\.11 ; then + # -DCMAKE_DISABLE_SOURCE_CHANGES=ON is broken with java on CMake 3.11 + # https://gitlab.kitware.com/cmake/cmake/issues/17933 + MAY_DISABLE_SOURCE_CHANGE="" +else + MAY_DISABLE_SOURCE_CHANGE="-DCMAKE_DISABLE_SOURCE_CHANGES=ON" +fi + +if [ "$os" = "NixOS" ] && [ "$(gcc -dumpversion)" = "7.4.0" ]; then + echo "Temporary disable LTO, believed to be broken on this system." + MAY_DISABLE_LTO=-Denable_lto=OFF +else + MAY_DISABLE_LTO= fi -cmake -G"$GENERATOR" $INSTALL \ + +cmake -G"$GENERATOR" ${INSTALL:+-DCMAKE_INSTALL_PREFIX=$INSTALL} \ -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \ -Denable_model-checking=$(onoff test "$build_mode" = "ModelChecker") \ -Denable_smpi_ISP_testsuite=$(onoff test "$build_mode" = "ModelChecker") \ @@ -130,12 +200,14 @@ cmake -G"$GENERATOR" $INSTALL \ -Denable_memcheck=$(onoff test "$build_mode" = "DynamicAnalysis") \ -Denable_compile_warnings=$(onoff test "$GENERATOR" != "MSYS Makefiles") -Denable_smpi=ON \ -Denable_ns3=$(onoff test "$have_NS3" = "yes" -a "$build_mode" = "Debug") \ - -Denable_jedule=OFF -Denable_java=ON -Denable_lua=OFF -DCMAKE_DISABLE_SOURCE_CHANGES=ON \ + -Denable_jedule=OFF -Denable_lua=OFF ${MAY_DISABLE_SOURCE_CHANGE} ${MAY_DISABLE_LTO} \ + -Denable_java=$(onoff test "$build_mode" = "ModelChecker") \ + -Denable_MSG=$(onoff test "$build_mode" = "ModelChecker") \ $SRCFOLDER # -Denable_lua=$(onoff test "$build_mode" != "DynamicAnalysis") \ set +x -make -j$NUMBER_OF_PROCESSORS VERBOSE=1 +make -j $NUMBER_OF_PROCESSORS VERBOSE=1 tests echo "XX" echo "XX Run the tests" @@ -143,18 +215,13 @@ echo "XX pwd: "$(pwd) echo "XX" ctest -T test --output-on-failure --no-compress-output || true -if [ -f Testing/TAG ] ; then - xsltproc $WORKSPACE/tools/jenkins/ctest2junit.xsl Testing/$( head -n 1 < Testing/TAG )/Test.xml > CTestResults.xml - mv CTestResults.xml $WORKSPACE -fi -if test "$(uname)" != "Msys" && test "${build_mode}" = "Debug" -o "${build_mode}" = "ModelChecker" ; then +if test -n "$INSTALL" && [ ${branch_name} = "origin/master" ] ; then echo "XX" echo "XX Test done. Install everything since it's a regular build, not on a Windows." echo "XX" - test "${build_mode}" = "Debug" && rm -rf /builds/simgrid_install - test "${build_mode}" = "ModelChecker" && rm -rf /builds/mc_simgrid_install + rm -rf "$INSTALL" make install fi