aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/travis.sh b/travis.sh
index 74820c6fae8..4d7066acec2 100755
--- a/travis.sh
+++ b/travis.sh
@@ -6,6 +6,7 @@ function configureTravis {
mkdir ~/.local
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v25 | tar zx --strip-components 1 -C ~/.local
source ~/.local/bin/install
+ echo "$ARTIFACTORY_URL/npmjs/" > .npmrc
}
configureTravis
@@ -37,7 +38,7 @@ CI)
if [[ $CURRENT_VERSION =~ "-SNAPSHOT" ]]; then
echo "======= Found SNAPSHOT version ======="
# Do not deploy a SNAPSHOT version but the release version related to this build
- set_maven_build_version $TRAVIS_BUILD_NUMBER
+ set_maven_build_version $TRAVIS_BUILD_NUMBER
else
echo "======= Found RELEASE version ======="
fi
@@ -45,9 +46,9 @@ CI)
# analysis is currently executed by SonarSource internal infrastructure
mvn deploy \
-Pdeploy-sonarsource \
- -B -e -V
+ -B -e -V
+
-
elif [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ -n "${GITHUB_TOKEN:-}" ]; then
strongEcho 'Build and analyze pull request, no deploy'