jjb: Add PKG_CONFIG_PATH to coverity script
[lttng-ci.git] / scripts / common / scan-build.sh
CommitLineData
a57a60d9 1#!/bin/bash -exu
2b68721a 2#
ae3ca8a0
MJ
3# Copyright (C) 2015 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
2b68721a
MJ
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
6544f0ff
MJ
19# Required variables
20WORKSPACE=${WORKSPACE:-}
2b68721a 21
6544f0ff
MJ
22DEPS_INC="$WORKSPACE/deps/build/include"
23DEPS_LIB="$WORKSPACE/deps/build/lib"
24DEPS_PKGCONFIG="$DEPS_LIB/pkgconfig"
25DEPS_BIN="$WORKSPACE/deps/build/bin"
26
27export PATH="$DEPS_BIN:$PATH"
28export LD_LIBRARY_PATH="$DEPS_LIB:${LD_LIBRARY_PATH:-}"
29export PKG_CONFIG_PATH="$DEPS_PKGCONFIG"
30export CPPFLAGS="-I$DEPS_INC"
31export LDFLAGS="-L$DEPS_LIB"
1f4fba8c 32
69f05d59 33SRCDIR="$WORKSPACE/src/$PROJECT_NAME"
1f4fba8c 34TMPDIR="$WORKSPACE/tmp"
ae3ca8a0
MJ
35
36NPROC=$(nproc)
37export CFLAGS="-O0 -g -DDEBUG"
1f4fba8c
MJ
38
39# Directory to archive the scan-build report
2b68721a
MJ
40SCAN_BUILD_ARCHIVE="${WORKSPACE}/scan-build-archive"
41
ae3ca8a0
MJ
42# Create tmp directory
43rm -rf "$TMPDIR"
44mkdir -p "$TMPDIR"
1f4fba8c
MJ
45
46export TMPDIR
47
48# temp directory to store the scan-build report
6544f0ff 49SCAN_BUILD_TMPDIR=$(mktemp -d)
2b68721a 50
ae3ca8a0
MJ
51case "$PROJECT_NAME" in
52babeltrace)
53 export BABELTRACE_DEV_MODE=1
fa43a231
FD
54 export BABELTRACE_DEBUG_MODE=1
55 export BABELTRACE_MINIMAL_LOG_LEVEL=TRACE
ae3ca8a0
MJ
56 CONF_OPTS="--enable-python-bindings --enable-python-bindings-doc --enable-python-plugins"
57 BUILD_TYPE="autotools"
58 ;;
59liburcu)
60 CONF_OPTS=""
61 BUILD_TYPE="autotools"
62 ;;
63lttng-modules)
64 CONF_OPTS=""
65 BUILD_TYPE="autotools"
66 ;;
67lttng-tools)
68 CONF_OPTS=""
69 BUILD_TYPE="autotools"
70 ;;
71lttng-ust)
72 CONF_OPTS="--enable-java-agent-all --enable-python-agent"
73 BUILD_TYPE="autotools"
74 export CLASSPATH="/usr/share/java/log4j-1.2.jar"
75 ;;
76linux-rseq)
77 CONF_OPTS=""
78 BUILD_TYPE="linux-rseq"
79 ;;
80*)
81 echo "Generic project, no configure options."
82 CONF_OPTS=""
83 BUILD_TYPE="autotools"
84 ;;
85esac
86
ae3ca8a0
MJ
87if [ -d "$WORKSPACE/src/linux" ]; then
88 export KERNELDIR="$WORKSPACE/src/linux"
89fi
c9b78c7b 90
1f4fba8c
MJ
91# Enter the source directory
92cd "$SRCDIR"
2b68721a 93
ae3ca8a0 94# Build
ae3ca8a0
MJ
95case "$BUILD_TYPE" in
96autotools)
97 # Prepare build dir for autotools based projects
98 if [ -f "./bootstrap" ]; then
99 ./bootstrap
100 ./configure $CONF_OPTS
101 fi
1f4fba8c 102
ae3ca8a0
MJ
103 scan-build -k -o "${SCAN_BUILD_TMPDIR}" make -j"$NPROC" V=1
104 ;;
105linux-rseq)
106 make defconfig
107 make -j"$NPROC" prepare
108 scan-build -k -o "${SCAN_BUILD_TMPDIR}" make -j"$NPROC" kernel/rseq.o kernel/do_on_cpu/core.o kernel/do_on_cpu/interpreter.o kernel/do_on_cpu/validate.o V=1
109 ;;
110*)
111 echo "Unsupported build type: $BUILD_TYPE"
112 exit 1
113 ;;
114esac
1f4fba8c 115
1f4fba8c 116
2b68721a 117# get the directory name of the report created by scan-build
69f05d59 118SCAN_BUILD_REPORT=$(find "${SCAN_BUILD_TMPDIR}" -maxdepth 1 -not -empty -not -name "$(basename "${SCAN_BUILD_TMPDIR}")")
2b68721a 119rc=$?
1f4fba8c 120
2b68721a
MJ
121if [ -z "${SCAN_BUILD_REPORT}" ]; then
122 echo ">>> No new bugs identified."
123 echo ">>> No scan-build report has been generated"
124else
125 echo ">>> New scan-build report generated in ${SCAN_BUILD_REPORT}"
1f4fba8c 126
2b68721a
MJ
127 if [ ! -d "${SCAN_BUILD_ARCHIVE}" ]; then
128 echo ">>> Creating scan-build archive directory"
1f4fba8c 129 mkdir "${SCAN_BUILD_ARCHIVE}"
2b68721a
MJ
130 else
131 echo ">>> Removing any previous scan-build reports from ${SCAN_BUILD_ARCHIVE}"
1f4fba8c 132 rm -f "${SCAN_BUILD_ARCHIVE}/*"
2b68721a 133 fi
1f4fba8c 134
2b68721a 135 echo ">>> Archiving scan-build report to ${SCAN_BUILD_ARCHIVE}"
69f05d59 136 mv "${SCAN_BUILD_REPORT}"/* "${SCAN_BUILD_ARCHIVE}/"
1f4fba8c 137
2b68721a
MJ
138 echo ">>> Removing any temporary files and directories"
139 rm -rf "${SCAN_BUILD_TMPDIR}"
140fi
1f4fba8c 141
2b68721a 142exit ${rc}
This page took 0.05809 seconds and 4 git commands to generate.