diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-06-08 17:14:15 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-06-09 09:34:39 +0200 |
commit | 5b82ca5d5aa0c2ca080ddb115df2a37821c22923 (patch) | |
tree | 1366542f4b75c34e7e8d2bec482283bf75a45c76 | |
parent | c113c2730aee79277a7ae600672b72c5e1d835b5 (diff) | |
download | sonarqube-5b82ca5d5aa0c2ca080ddb115df2a37821c22923.tar.gz sonarqube-5b82ca5d5aa0c2ca080ddb115df2a37821c22923.zip |
use repox as npm registry on travis
-rwxr-xr-x | travis.sh | 7 |
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' |