Make sure that jjb-cleanup.sh allows unbound vars
[releng/global-jjb.git] / shell / maven-sonar.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 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
12 # This script builds a Maven project and deploys it into a staging repo which
13 # can be used to deploy elsewhere later eg. Nexus staging / snapshot repos.
14
15 # DO NOT enable -u because $MAVEN_PARAMS and $MAVEN_OPTIONS could be unbound.
16 # Ensure we fail the job if any steps fail.
17 set -xe -o pipefail
18 set +u
19
20 export MAVEN_OPTS
21
22 # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters.
23 # shellcheck disable=SC2086
24 $MVN clean install \
25     -e -Dsonar \
26     --global-settings "$GLOBAL_SETTINGS_FILE" \
27     --settings "$SETTINGS_FILE" \
28     $MAVEN_OPTIONS $MAVEN_PARAMS
29
30 # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters.
31 # shellcheck disable=SC2086
32 $MVN $SONAR_MAVEN_GOAL \
33     -e -Dsonar -Dsonar.host.url="$SONAR_HOST_URL" \
34     --global-settings "$GLOBAL_SETTINGS_FILE" \
35     --settings "$SETTINGS_FILE" \
36     $MAVEN_OPTIONS $MAVEN_PARAMS