From: Stas Vilchik Date: Fri, 8 Jul 2016 07:31:43 +0000 (+0200) Subject: upgrade travis-utils to v31 (#1088) X-Git-Tag: 5.6.2~18 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d94aa825004f0c8666690da143d466d71b31388d;p=sonarqube.git upgrade travis-utils to v31 (#1088) --- diff --git a/travis.sh b/travis.sh index 74820c6fae8..12612d854f1 100755 --- a/travis.sh +++ b/travis.sh @@ -4,7 +4,7 @@ set -euo pipefail function configureTravis { mkdir ~/.local - curl -sSL https://github.com/SonarSource/travis-utils/tarball/v25 | tar zx --strip-components 1 -C ~/.local + curl -sSL https://github.com/SonarSource/travis-utils/tarball/v31 | tar zx --strip-components 1 -C ~/.local source ~/.local/bin/install } configureTravis @@ -37,7 +37,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 +45,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'