salix/Jenkinsfile

48 lines
1.3 KiB
Plaintext
Raw Normal View History

2017-05-12 10:41:35 +00:00
#!/usr/bin/env groovy
2018-05-10 15:50:42 +00:00
def branchName = env.BRANCH_NAME;
2017-05-12 10:41:35 +00:00
2018-04-27 11:31:12 +00:00
// TODO: We are using latest tag until image rotation it's implemented
2018-05-10 15:50:42 +00:00
env.TAG = 'latest' /* env.BUILD_NUMBER */;
2017-11-07 12:54:19 +00:00
env.BRANCH_NAME = branchName;
2018-05-10 15:50:42 +00:00
env.salixUser = env.salixUser;
env.salixPassword = env.salixPassword;
2017-05-11 10:07:33 +00:00
2018-04-06 16:14:49 +00:00
switch (branchName) {
2018-05-10 15:50:42 +00:00
case 'test':
env.NODE_ENV = 'test';
env.salixHost = env.testSalixHost;
env.salixPort = env.testSalixPort;
2017-11-09 12:24:23 +00:00
break;
2018-05-10 15:50:42 +00:00
case 'master':
env.NODE_ENV = 'production'
env.salixHost = env.productionSalixHost;
env.salixPort = env.productionSalixPort;
env.DOCKER_HOST = 'tcp://vch1.verdnatura.es:2375';
2017-11-09 12:24:23 +00:00
break;
}
2017-05-11 10:07:33 +00:00
2018-04-06 16:14:49 +00:00
node {
stage ('Print environment variables') {
2018-05-10 15:50:42 +00:00
echo "Branch ${branchName}, tag ${env.TAG}, environament ${env.NODE_ENV}"
2017-11-07 12:04:14 +00:00
}
2017-05-11 10:07:33 +00:00
stage ('Checkout') {
checkout scm
2017-11-07 08:15:44 +00:00
}
2018-04-27 11:31:12 +00:00
stage ('Install client Node dependencies') {
2017-05-12 12:47:15 +00:00
sh "npm install"
}
2018-04-27 11:31:12 +00:00
stage ('Build project') {
2017-05-11 10:07:33 +00:00
sh "gulp build"
}
2018-05-10 15:50:42 +00:00
stage ('Install services Node dependencies') {
2018-04-27 11:31:12 +00:00
sh "cd ./services/loopback && npm install"
}
2018-05-10 15:50:42 +00:00
stage ('Removing old dockers') {
2018-05-10 15:41:03 +00:00
sh "docker-compose down --rmi 'all'"
}
2018-05-10 15:50:42 +00:00
stage ('Generating new dockers') {
2018-04-27 11:31:12 +00:00
sh "docker-compose up -d --build"
2017-05-11 10:07:33 +00:00
}
2018-01-08 10:07:52 +00:00
}