X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fmaven-build.sh;h=1f6195469366fc30a9327b447a53c94673e8be2e;hb=407b9b1a5f36d7bbdf86bc8480768878292b3349;hp=458513801de70a0d81012eb8fadae983a8bb84fc;hpb=c238d5307c09b13e356bdb83379f4060f933b3a4;p=releng%2Fglobal-jjb.git diff --git a/shell/maven-build.sh b/shell/maven-build.sh index 45851380..1f619546 100644 --- a/shell/maven-build.sh +++ b/shell/maven-build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -l # SPDX-License-Identifier: EPL-1.0 ############################################################################## # Copyright (c) 2017 The Linux Foundation and others. @@ -14,14 +14,15 @@ # DO NOT enable -u because $MAVEN_PARAMS and $MAVEN_OPTIONS could be unbound. # Ensure we fail the job if any steps fail. -set -e -o pipefail +set -xe -o pipefail set +u export MAVEN_OPTS # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters. # shellcheck disable=SC2086 -$MVN clean deploy \ +$MVN $MAVEN_GOALS \ + -e \ --global-settings "$GLOBAL_SETTINGS_FILE" \ --settings "$SETTINGS_FILE" \ -DaltDeploymentRepository=staging::default::file:"$WORKSPACE"/m2repo \