Chore: Upgrade Jenkins-job-builder to 6.3.0
[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
29 export SET_JDK_VERSION="${SET_JDK_VERSION:-openjdk11}"
30 echo "$SET_JDK_VERSION"
31 GITHUB_RAW_BASE_URL="https://raw.githubusercontent.com"
32 GITHUB_FILE="lfit/releng-global-jjb/master/shell/update-java-alternatives.sh"
33 bash <(curl -s "${GITHUB_RAW_BASE_URL}/${GITHUB_FILE}")
34 # shellcheck disable=SC1091
35 source /tmp/java.env
36
37 mkdir -p "$build_dir"
38 cd "$build_dir" || exit 1
39
40 # $cmake_opts needs to wordsplit to pass options.
41 # shellcheck disable=SC2086
42 eval cmake -DCMAKE_INSTALL_PREFIX="$INSTALL_PREFIX" $cmake_opts ..
43
44 # $make_opts may be empty.
45 # shellcheck disable=SC2086
46 /opt/build-wrapper/build-wrapper-linux-x86-64 --out-dir "$build_wrap_dir" \
47     make $make_opts
48
49 echo "---> cmake-sonarqube.sh ends"