Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote-tracking branch 'upstream/master' into issue95
[simgrid.git] / tools / jenkins / build.sh
1 #!/usr/bin/env sh
2
3 # This script is used by various build projects on Jenkins
4
5 # See https://ci.inria.fr/simgrid/job/SimGrid/configure
6 # See https://ci.inria.fr/simgrid/job/Simgrid-Windows/configure
7
8 # ensure that the locales are set, so that perl keeps its nerves
9 export LC_ALL=C
10
11 echo "XXXX Cleanup previous attempts. Remaining content of /tmp:"
12 rm -f /tmp/cc*
13 rm -f /tmp/*.so
14 rm -f /tmp/*.so.*
15 rm -rf /tmp/simgrid-java*
16 rm -rf /var/tmp/simgrid-java*
17 rm -rf /tmp/jvm-*
18 find $WORKSPACE -name "hs_err_pid*.log" -exec rm -f {} +
19 ls /tmp
20 df -h
21 echo "XXXX Let's go"
22
23 set -e
24
25 # Help older cmakes
26 if [ -e /usr/lib/jvm/java-7-openjdk-amd64 ] ;
27 then
28   export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
29 fi
30
31 # usage: die status message...
32 die () {
33   status=${1:-1}
34   shift
35   [ $# -gt 0 ] || set -- "Error - Halting"
36   echo "$@" >&2
37   exit "$status"
38 }
39
40 # Get an ON/OFF string from a command:
41 onoff() {
42   if "$@" > /dev/null ; then
43     echo ON
44   else
45     echo OFF
46   fi
47 }
48
49 if type lsb_release >/dev/null 2>&1; then # recent versions of Debian/Ubuntu
50     # linuxbase.org
51     os=$(lsb_release -si)
52     ver="$(lsb_release -sr) ($(lsb_release -sc))"
53 elif [ -f /etc/lsb-release ]; then # For some versions of Debian/Ubuntu without lsb_release command
54     . /etc/lsb-release
55     os=$DISTRIB_ID
56     ver=$DISTRIB_RELEASE
57 elif [ -f /etc/debian_version ]; then # Older Debian/Ubuntu/etc.
58     os=Debian
59     ver=$(cat /etc/debian_version)
60 elif [ -f /etc/redhat-release ]; then #RH, Fedora, Centos
61     read -r os ver < /etc/redhat-release
62 elif [ -f /usr/bin/sw_vers ]; then #osx
63     os=$(sw_vers -productName)
64     ver=$(sw_vers -productVersion)
65 elif [ -f /bin/freebsd-version ]; then #freebsd
66     os=$(uname -s)
67     ver=$(freebsd-version -u)
68 elif [ -f /etc/release ]; then #openindiana
69     read -r os ver < /etc/release
70 elif [ -f /etc/os-release ]; then # freedesktop.org and systemd, put last as usually missing useful info
71     . /etc/os-release
72     os=$NAME
73     ver=$VERSION_ID
74 else
75     # Fall back to uname, e.g. "Linux <version>", also works for BSD, etc.
76     echo "fallback as OS name not found"
77     os=$(uname -s)
78     ver=$(uname -r)
79 fi
80
81 # Are we running on wsl ?
82 if [ -f /mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe ]; then
83     #To identify the windows underneath the linux
84     PATH="/mnt/c/Windows/System32/WindowsPowerShell/v1.0/:$PATH"
85     major=$(powershell.exe -command "[environment]::OSVersion.Version.Major" | sed 's/\r//g')
86     build=$(powershell.exe -command "[environment]::OSVersion.Version.Build"| sed 's/\r//g')
87     ver="$major v$build - WSL $os $ver"
88     os=Windows
89 fi
90
91 case $(uname -m) in
92 x86_64)
93     bits="64 bits"
94     ;;
95 i*86)
96     bits="32 bits"
97     ;;
98 *)
99     bits=""
100     ;;
101 esac
102 echo "OS Version : $os $ver $bits"
103
104
105 build_mode="$1"
106 echo "Build mode $build_mode on $(uname -np)" >&2
107 case "$build_mode" in
108   "Debug")
109       INSTALL="$HOME/simgrid_install"
110   ;;
111
112   "ModelChecker")
113       INSTALL="$HOME/mc_simgrid_install"
114   ;;
115
116   "DynamicAnalysis")
117       INSTALL=""
118   ;;
119
120   *)
121     die 1 "Unknown build_mode $build_mode"
122   ;;
123 esac
124
125 if [ "$2" = "" ]; then
126   branch_name="unknown"
127 else
128   branch_name="$2"
129 fi
130 echo "Branch built is $branch_name"
131
132 NUMBER_OF_PROCESSORS="$(nproc)" || NUMBER_OF_PROCESSORS=1
133 GENERATOR="Unix Makefiles"
134
135 ulimit -c 0 || true
136
137 echo "XX"
138 echo "XX Get out of the tree"
139 echo "XX"
140 if [ -d "$WORKSPACE"/build ]
141 then
142   # Windows cannot remove the directory if it's still used by the previous build
143   rm -rf "$WORKSPACE"/build || sleep 10 && rm -rf "$WORKSPACE"/build || sleep 10 && rm -rf "$WORKSPACE"/build
144 fi
145 mkdir "$WORKSPACE"/build
146 cd "$WORKSPACE"/build
147
148 have_NS3="no"
149 if [ "$os" = "Debian" ] || [ "$os" = "Ubuntu" ] ; then
150   if dpkg --compare-versions "$(dpkg-query -f '${Version}' -W libns3-dev)" ge 3.28; then
151     have_NS3="yes"
152   fi
153 fi
154 if [ "$os" = "NixOS" ] ; then
155   have_NS3="yes"
156 fi
157 echo "XX have_NS3: ${have_NS3}"
158
159 # This is for Windows:
160 PATH="$WORKSPACE/build/lib:$PATH"
161
162 echo "XX"
163 echo "XX Build the archive out of the tree"
164 echo "XX   pwd: $(pwd)"
165 echo "XX"
166
167 cmake -G"$GENERATOR" -Denable_documentation=OFF "$WORKSPACE"
168 make dist -j $NUMBER_OF_PROCESSORS
169 SIMGRID_VERSION=$(cat VERSION)
170
171 echo "XX"
172 echo "XX Open the resulting archive"
173 echo "XX"
174 gunzip "${SIMGRID_VERSION}".tar.gz
175 tar xf "${SIMGRID_VERSION}".tar
176 mkdir "${WORKSPACE}"/build/"${SIMGRID_VERSION}"/build
177 cd "${WORKSPACE}"/build/"${SIMGRID_VERSION}"/build
178 SRCFOLDER="${WORKSPACE}/build/${SIMGRID_VERSION}"
179
180 echo "XX"
181 echo "XX Configure and build SimGrid"
182 echo "XX   pwd: $(pwd)"
183 echo "XX"
184 set -x
185
186 if cmake --version | grep -q 3\.11 ; then
187   # -DCMAKE_DISABLE_SOURCE_CHANGES=ON is broken with java on CMake 3.11
188   # https://gitlab.kitware.com/cmake/cmake/issues/17933
189   MAY_DISABLE_SOURCE_CHANGE=""
190 else
191   MAY_DISABLE_SOURCE_CHANGE="-DCMAKE_DISABLE_SOURCE_CHANGES=ON"
192 fi
193
194 if [ "$os" = "CentOS" ] && [ "$(ld -v | cut -d\  -f4 | cut -c1-4)" = "2.30" ]; then
195   echo "Temporary disable LTO, believed to be broken on this system."
196   MAY_DISABLE_LTO=-Denable_lto=OFF
197 else
198   MAY_DISABLE_LTO=
199 fi
200
201 cmake -G"$GENERATOR" ${INSTALL:+-DCMAKE_INSTALL_PREFIX=$INSTALL} \
202   -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \
203   -Denable_model-checking=$(onoff test "$build_mode" = "ModelChecker") \
204   -Denable_smpi_ISP_testsuite=$(onoff test "$build_mode" = "ModelChecker") \
205   -Denable_compile_optimizations=$(onoff test "$build_mode" != "DynamicAnalysis") \
206   -Denable_smpi_MPICH3_testsuite=$(onoff test "$build_mode" = "Debug") \
207   -Denable_mallocators=$(onoff test "$build_mode" != "DynamicAnalysis") \
208   -Denable_memcheck=$(onoff test "$build_mode" = "DynamicAnalysis") \
209   -Denable_compile_warnings=$(onoff test "$GENERATOR" != "MSYS Makefiles") -Denable_smpi=ON \
210   -Denable_ns3=$(onoff test "$have_NS3" = "yes" -a "$build_mode" = "Debug") \
211   -Denable_lua=OFF ${MAY_DISABLE_SOURCE_CHANGE} ${MAY_DISABLE_LTO} \
212   -Denable_java=$(onoff test "$build_mode" = "ModelChecker") \
213   -Denable_msg=$(onoff test "$build_mode" = "ModelChecker") \
214   -DLTO_EXTRA_FLAG="auto" \
215   "$SRCFOLDER"
216 #  -Denable_lua=$(onoff test "$build_mode" != "DynamicAnalysis") \
217 set +x
218
219 make -j $NUMBER_OF_PROCESSORS VERBOSE=1 tests
220
221 echo "XX"
222 echo "XX Run the tests"
223 echo "XX   pwd: "$(pwd)
224 echo "XX"
225
226 ctest -T test --output-on-failure --no-compress-output -j $NUMBER_OF_PROCESSORS || true
227
228 if test -n "$INSTALL" && [ "${branch_name}" = "origin/master" ] ; then
229   echo "XX"
230   echo "XX Test done. Install everything since it's a regular build, not on a Windows."
231   echo "XX"
232
233   rm -rf "$INSTALL"
234
235   make install
236 fi
237
238 echo "XX"
239 echo "XX Done. Return the results to cmake"
240 echo "XX"