jjb: build scripts cleanups
[lttng-ci.git] / scripts / common / scan-build.sh
CommitLineData
a57a60d9 1#!/bin/bash -exu
2b68721a
MJ
2#
3# Copyright (C) 2015 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
1f4fba8c 4# 2016 - 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
19
20# do not exit immediately if any command fails
21set +e
1f4fba8c 22
69f05d59 23SRCDIR="$WORKSPACE/src/$PROJECT_NAME"
1f4fba8c
MJ
24TMPDIR="$WORKSPACE/tmp"
25PREFIX="$WORKSPACE/build"
26
27# Directory to archive the scan-build report
2b68721a
MJ
28SCAN_BUILD_ARCHIVE="${WORKSPACE}/scan-build-archive"
29
1f4fba8c
MJ
30# Create build and tmp directories
31rm -rf "$PREFIX" "$TMPDIR"
32mkdir -p "$PREFIX" "$TMPDIR"
33
34export TMPDIR
35
36# temp directory to store the scan-build report
37SCAN_BUILD_TMPDIR=$( mktemp -d )
2b68721a 38
c9b78c7b
MJ
39# liburcu
40URCU_INCS="$WORKSPACE/deps/liburcu/build/include/"
41URCU_LIBS="$WORKSPACE/deps/liburcu/build/lib/"
42
69f05d59
MJ
43# lttng-ust
44UST_INCS="$WORKSPACE/deps/lttng-ust/build/include/"
45UST_LIBS="$WORKSPACE/deps/lttng-ust/build/lib/"
46
2b68721a 47export CFLAGS="-O0 -g -DDEBUG"
69f05d59
MJ
48
49export CPPFLAGS="-I$URCU_INCS -I$UST_INCS"
50export LDFLAGS="-L$URCU_LIBS -L$UST_LIBS"
51export LD_LIBRARY_PATH="$URCU_LIBS:$UST_LIBS:${LD_LIBRARY_PATH:-}"
c9b78c7b 52
1f4fba8c
MJ
53# Enter the source directory
54cd "$SRCDIR"
2b68721a 55
1f4fba8c 56# Run bootstrap in the source directory prior to configure
2b68721a 57./bootstrap
1f4fba8c
MJ
58
59
89b9225e 60./configure --prefix="$PREFIX"
1f4fba8c 61
2b68721a 62# generate the scan-build report
69f05d59 63scan-build -k -o "${SCAN_BUILD_TMPDIR}" make -j "$(nproc)"
1f4fba8c 64
2b68721a 65# get the directory name of the report created by scan-build
69f05d59 66SCAN_BUILD_REPORT=$(find "${SCAN_BUILD_TMPDIR}" -maxdepth 1 -not -empty -not -name "$(basename "${SCAN_BUILD_TMPDIR}")")
2b68721a 67rc=$?
1f4fba8c 68
2b68721a
MJ
69if [ -z "${SCAN_BUILD_REPORT}" ]; then
70 echo ">>> No new bugs identified."
71 echo ">>> No scan-build report has been generated"
72else
73 echo ">>> New scan-build report generated in ${SCAN_BUILD_REPORT}"
1f4fba8c 74
2b68721a
MJ
75 if [ ! -d "${SCAN_BUILD_ARCHIVE}" ]; then
76 echo ">>> Creating scan-build archive directory"
1f4fba8c 77 mkdir "${SCAN_BUILD_ARCHIVE}"
2b68721a
MJ
78 else
79 echo ">>> Removing any previous scan-build reports from ${SCAN_BUILD_ARCHIVE}"
1f4fba8c 80 rm -f "${SCAN_BUILD_ARCHIVE}/*"
2b68721a 81 fi
1f4fba8c 82
2b68721a 83 echo ">>> Archiving scan-build report to ${SCAN_BUILD_ARCHIVE}"
69f05d59 84 mv "${SCAN_BUILD_REPORT}"/* "${SCAN_BUILD_ARCHIVE}/"
1f4fba8c 85
2b68721a
MJ
86 echo ">>> Removing any temporary files and directories"
87 rm -rf "${SCAN_BUILD_TMPDIR}"
88fi
1f4fba8c 89
2b68721a 90exit ${rc}
This page took 0.026943 seconds and 4 git commands to generate.