Jenkinsfile stages removed

This commit is contained in:
Juan 2018-06-11 12:51:32 +02:00
parent 281f539aea
commit f2b9ba41bc
1 changed files with 1 additions and 4 deletions

5
Jenkinsfile vendored
View File

@ -27,16 +27,13 @@ node {
stage ('Checkout') {
checkout scm
}
stage ('Install client Node dependencies') {
stage ('Install Node dependencies') {
sh "npm install"
sh "gulp install"
}
stage ('Build project') {
sh "gulp build"
}
stage ('Install services Node dependencies') {
sh "cd ./services/loopback && npm install"
}
stage ('Removing old dockers') {
sh "docker-compose down --rmi 'all'"
}