Merge "feat(hicn.yaml): add functional tests jobs"
[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
29 echo "sha1sum of this script: ${0}"
30 sha1sum $0
31 export CC=gcc
32
33 make_build_release_build_test_gcov_sanity() {
34     if ! make UNATTENDED=yes install-dep ; then
35         BUILD_ERROR="FAILED 'make install-dep'"
36         return
37     fi
38     if ! make UNATTENDED=yes install-ext-deps ; then
39         BUILD_ERROR="FAILED 'make install-ext-deps'"
40         return
41     fi
42     if ! make UNATTENDED=yes build-release ; then
43         BUILD_ERROR="FAILED 'make build'"
44         return
45     fi
46     if ! make UNATTENDED=yes build ; then
47         BUILD_ERROR="FAILED 'make build'"
48         return
49     fi
50     # TODO: Add 'smoke test' env var to select smoke test cases
51     #       then update this accordingly.  For now pick a few basic suites...
52     MAKE_TEST_SUITES="vlib vppinfra vpe_api vapi cli bihash"
53     for suite in $MAKE_TEST_SUITES ; do
54         if ! make UNATTENDED=yes GCOV_TESTS=1 TEST_JOBS=auto TEST=$suite test ; then
55             BUILD_ERROR="FAILED 'make GCOV_TESTS=1 TEST_JOBS=auto TEST=$suite test'!"
56             return
57         fi
58         if ! make UNATTENDED=yes GCOV_TESTS=1 TEST_JOBS=auto TEST=$suite test-debug ; then
59             BUILD_ERROR="FAILED 'make GCOV_TESTS=1 TEST_JOBS=auto TEST=$suite test-debug'!"
60             return
61         fi
62     done
63 }
64
65 if [ "${DRYRUN,,}" != "true" ] ; then
66     make_build_release_build_test_gcov_sanity
67 fi
68 if [ -n "$BUILD_ERROR" ] ; then
69     BUILD_RESULT="$BUILD_ERROR"
70     RETVAL="1"
71 fi
72 echo -e "\n$line\n* VPP ${OS_ID^^}-${OS_VERSION_ID}-${OS_ARCH^^} GCC BUILD $BUILD_RESULT\n$line\n"
73 exit $RETVAL