6d9fabcb91f1e644c0cbbf6bf55d7098256463fb
[ci-management.git] / jjb / scripts / vpp / debug-build.sh
1 #!/bin/bash
2
3 # Copyright (c) 2021 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 echo "---> jjb/scripts/vpp/debug-build.sh"
17
18 set -euxo pipefail
19
20 line="*************************************************************************"
21 OS_ID=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
22 OS_VERSION_ID=$(grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
23 OS_ARCH=$(uname -m)
24 DRYRUN="${DRYRUN:-}"
25 MAKE_PARALLEL_JOBS="${MAKE_PARALLEL_JOBS:-}"
26 BUILD_RESULT="SUCCESSFULLY COMPLETED"
27 BUILD_ERROR=""
28 RETVAL="0"
29
30 # run with ASAN on
31 # disable ASAN for now in the debug build - it's broken with PAPI
32 # in make test transitioning to unix sockets
33 # export VPP_EXTRA_CMAKE_ARGS='-DVPP_ENABLE_SANITIZE_ADDR=ON'
34
35 make_build_test_debug() {
36     if ! make UNATTENDED=yes install-dep ; then
37         BUILD_ERROR="FAILED 'make install-dep'"
38         return
39     fi
40     if ! make UNATTENDED=yes install-ext-deps ; then
41         BUILD_ERROR="FAILED 'make install-ext-deps'"
42         return
43     fi
44     if ! make UNATTENDED=yes build ; then
45         BUILD_ERROR="FAILED 'make build'"
46         return
47     fi
48     if [ "${OS_ID}-${OS_VERSION_ID}" == "${MAKE_TEST_OS}" ] ; then
49         if [ -n "${MAKE_PARALLEL_JOBS}" ] ; then
50             TEST_JOBS="${MAKE_PARALLEL_JOBS}"
51             echo "Testing VPP with ${TEST_JOBS} cores."
52         else
53             TEST_JOBS="auto"
54             echo "Testing VPP with automatically calculated number of cores. " \
55                 "See test logs for the exact number."
56         fi
57         if ! make UNATTENDED=yes TEST_JOBS="$TEST_JOBS" test-debug ; then
58             BUILD_ERROR="FAILED 'make UNATTENDED=yes TEST_JOBS=$TEST_JOBS test-debug'"
59             return
60         fi
61     else
62         echo "Skip running 'make test-debug' on ${OS_ID}-${OS_VERSION_ID}"
63     fi
64 }
65
66 # clang is not working with ASAN right now - see change 27268
67 # also, it does not work with gcc-7, we need gcc-8 at least
68 # on ubuntu 20.04 executor the gcc is gcc9
69 if [ "${DRYRUN,,}" != "true" ] ; then
70     make_build_test_debug
71 fi
72 if [ -n "$BUILD_ERROR" ] ; then
73     BUILD_RESULT="$BUILD_ERROR"
74     RETVAL="1"
75 fi
76 echo -e "\n$line\n* VPP ${OS_ID^^}-${OS_VERSION_ID}-${OS_ARCH^^} DEBUG BUILD $BUILD_RESULT\n$line\n"
77 exit $RETVAL