From a2b8cbaa2d582a17b9e07b02a6d7b84e68c08307 Mon Sep 17 00:00:00 2001 From: David Gageot Date: Fri, 24 Jul 2015 14:26:00 +0200 Subject: [PATCH] Use travis-utils v15 --- travis.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/travis.sh b/travis.sh index 22409ea..20418b5 100755 --- a/travis.sh +++ b/travis.sh @@ -3,8 +3,9 @@ set -euo pipefail function installTravisTools { - curl -sSL https://raw.githubusercontent.com/sonarsource/travis-utils/v14/install.sh | bash - source /tmp/travis-utils/env.sh + mkdir ~/.local + curl -sSL https://github.com/SonarSource/travis-utils/tarball/v15 | tar zx --strip-components 1 -C ~/.local + source ~/.local/bin/install } case "$TESTS" in @@ -12,7 +13,7 @@ case "$TESTS" in CI) installTravisTools - travis_build_green "SonarSource/sonarqube" "master" + build_snapshot "SonarSource/sonarqube" mvn verify -B -e -V ;; @@ -20,7 +21,7 @@ CI) IT-DEV) installTravisTools - travis_build_green "SonarSource/sonarqube" "master" + build_snapshot "SonarSource/sonarqube" mvn install -Dsource.skip=true -Denforcer.skip=true -Danimal.sniffer.skip=true -Dmaven.test.skip=true -- 2.39.5