Logo AND Algorithmique Numérique Distribuée

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