Update Jenkinsfile

pull/73/head
Pablo Fuente Pérez 2018-05-21 15:40:13 +02:00 committed by GitHub
parent 190d0877db
commit fe0e099c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -15,9 +15,10 @@ node('container') {
sh 'mkdir ~/.npm-global && npm config set prefix "~/.npm-global" && echo "export PATH=~/.npm-global/bin:\$PATH" >> ~/.profile && source ~/.profile'
}
stage('OpenVidu parent build') {
sh 'cd openvidu && mvn -DskipTests=true install'
sh 'echo "cd openvidu && mvn -DskipTests=true install"'
}
stage('OpenVidu Browser build') {
sh 'mkdir ~/.npm-global && npm config set prefix "~/.npm-global" && echo "export PATH=~/.npm-global/bin:\$PATH" >> ~/.profile && source ~/.profile'
sh 'cd openvidu/openvidu-browser && npm install --unsafe-perm && npm run build && npm link'
}
stage('OpenVidu Node Client build') {