]> source.dussan.org Git - sonarqube.git/commitdiff
use nodejs 6.x (#1451)
authorStas Vilchik <vilchiks@gmail.com>
Mon, 12 Dec 2016 13:47:41 +0000 (14:47 +0100)
committerGitHub <noreply@github.com>
Mon, 12 Dec 2016 13:47:41 +0000 (14:47 +0100)
server/sonar-web/pom.xml
travis.sh

index 484a071a948c6c69b96a5d02e1c5e3f978e68781..d0a7779a53ee8ec8846f7652af219caef66f8e3d 100644 (file)
@@ -96,7 +96,7 @@
             <configuration>
               <nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
               <npmDownloadRoot>http://registry.npmjs.org/npm/-/</npmDownloadRoot>
-              <nodeVersion>v4.2.4</nodeVersion>
+              <nodeVersion>v6.9.2</nodeVersion>
               <npmVersion>3.5.2</npmVersion>
             </configuration>
           </execution>
index e5472131437cbbcee12ee490efc8c17db941e36b..4f39ec7ef7df4dfde6bff7134bcf7c83803db99b 100755 (executable)
--- a/travis.sh
+++ b/travis.sh
@@ -94,7 +94,7 @@ CI)
 
 WEB)
   set +eu
-  source ~/.nvm/nvm.sh && nvm install 4
+  source ~/.nvm/nvm.sh && nvm install 6
   npm install -g npm@3.5.2
   cd server/sonar-web && npm install && npm test
   ;;