Add templates Cmake + SonarQube Jenkins plugin
[releng/global-jjb.git] / shell / cmake-sonarqube.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2020 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> cmake-sonarqube.sh"
12
13 # Runs cmake then make using a wrapper for the SonarQube Jenkins plug-in
14 # https://docs.sonarqube.org/latest/analysis/languages/cfamily/
15
16 set -eux -o pipefail
17
18 build_dir="${BUILD_DIR:-$WORKSPACE/build}"
19 build_wrap_dir="${BUILD_WRAP_DIR:-$WORKSPACE/bw-output}"
20 cmake_opts="${CMAKE_OPTS:-}"
21 make_opts="${MAKE_OPTS:-}"
22
23 cd /tmp || exit 1
24 wget -q -O bw.zip https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip
25 unzip -q bw.zip
26 sudo mv build-wrapper-* /opt/build-wrapper
27
28 mkdir -p "$build_dir"
29 cd "$build_dir" || exit 1
30
31 # $cmake_opts needs to wordsplit to pass options.
32 # shellcheck disable=SC2086
33 eval cmake -DCMAKE_INSTALL_PREFIX="$INSTALL_PREFIX" $cmake_opts ..
34
35 # $make_opts may be empty.
36 # shellcheck disable=SC2086
37 /opt/build-wrapper/build-wrapper-linux-x86-64 --out-dir "$build_wrap_dir" make $make_opts
38
39 echo "---> cmake-sonarqube.sh ends"