Merge "fix: hicn-docs jobs should skip voting"
[ci-management.git] / jjb / scripts / vpp / gcc-build.sh
1 #!/bin/bash
2
3 # Copyright (c) 2022 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/gcc-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 BUILD_RESULT="SUCCESSFULLY COMPLETED"
26 BUILD_ERROR=""
27 RETVAL="0"
28 export CC=gcc
29
30 make_build_release_build_test_gcov_sanity() {
31     if ! make UNATTENDED=yes install-dep ; then
32         BUILD_ERROR="FAILED 'make install-dep'"
33         return
34     fi
35     if ! make UNATTENDED=yes install-ext-deps ; then
36         BUILD_ERROR="FAILED 'make install-ext-deps'"
37         return
38     fi
39     if ! make UNATTENDED=yes build-release ; then
40         BUILD_ERROR="FAILED 'make build'"
41         return
42     fi
43     if ! make UNATTENDED=yes build ; then
44         BUILD_ERROR="FAILED 'make build'"
45         return
46     fi
47     if [ -n "${MAKE_PARALLEL_JOBS}" ] ; then
48         TEST_JOBS="${MAKE_PARALLEL_JOBS}"
49         echo "Testing VPP with ${TEST_JOBS} cores."
50     else
51         TEST_JOBS="auto"
52         echo "Testing VPP with automatically calculated number of cores. " \
53              "See test logs for the exact number."
54     fi
55     # TODO: Add 'smoke test' env var to select smoke test cases
56     #       then update this accordingly.  For now pick a few basic suites...
57     MAKE_TEST_SUITES="vlib vppinfra vpe_api vapi cli bihash"
58     for suite in $MAKE_TEST_SUITES ; do
59         if ! make UNATTENDED=yes TESTS_GCOV=1 TEST_JOBS="$TEST_JOBS" TEST=$suite test ; then
60             BUILD_ERROR="FAILED 'make TESTS_GCOV=1 TEST_JOBS=$TEST_JOBS TEST=$suite test'!"
61             return
62         fi
63         if ! make UNATTENDED=yes TESTS_GCOV=1 TEST_JOBS="$TEST_JOBS" TEST=$suite test-debug ; then
64             BUILD_ERROR="FAILED 'make TESTS_GCOV=1 TEST_JOBS=$TEST_JOBS TEST=$suite test-debug'!"
65             return
66         fi
67     done
68 }
69
70 if [ "${DRYRUN,,}" != "true" ] ; then
71     make_build_release_build_test_gcov_sanity
72 fi
73 if [ -n "$BUILD_ERROR" ] ; then
74     BUILD_RESULT="$BUILD_ERROR"
75     RETVAL="1"
76 fi
77 echo -e "\n$line\n* VPP ${OS_ID^^}-${OS_VERSION_ID}-${OS_ARCH^^} GCC BUILD $BUILD_RESULT\n$line\n"
78 exit $RETVAL