2018-04-25 19:04:12 +01:00
|
|
|
node('node') {
|
|
|
|
try {
|
|
|
|
|
2018-07-13 16:02:33 +01:00
|
|
|
stage('Checkout') {
|
|
|
|
checkout scm
|
|
|
|
}
|
2018-04-25 19:04:12 +01:00
|
|
|
|
2018-07-13 16:02:33 +01:00
|
|
|
stage('Build Images') {
|
2018-07-25 22:47:02 +01:00
|
|
|
sh 'make test-docker images'
|
2018-07-13 16:02:33 +01:00
|
|
|
}
|
2018-04-25 19:04:12 +01:00
|
|
|
|
2018-07-13 16:02:33 +01:00
|
|
|
stage('Deploy') {
|
|
|
|
if (env.BRANCH_NAME != 'master') {
|
|
|
|
echo 'Skipping deploy stage'
|
|
|
|
return
|
|
|
|
}
|
2018-07-25 22:47:02 +01:00
|
|
|
sh 'make push-images'
|
2018-07-13 16:02:33 +01:00
|
|
|
}
|
2018-04-25 19:04:12 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
currentBuild.result = "FAILURE"
|
|
|
|
|
|
|
|
/*
|
|
|
|
mail body: "project build error is here: ${env.BUILD_URL}" ,
|
|
|
|
from: 'build@storj.io',
|
|
|
|
replyTo: 'build@storj.io',
|
|
|
|
subject: 'project build failed',
|
|
|
|
to: "${env.CHANGE_AUTHOR_EMAIL}"
|
|
|
|
|
|
|
|
throw err
|
|
|
|
*/
|
2018-07-13 16:02:33 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
|
|
|
|
stage('Cleanup') {
|
2018-07-25 22:47:02 +01:00
|
|
|
sh 'make test-docker-clean clean-images'
|
2018-07-13 16:02:33 +01:00
|
|
|
deleteDir()
|
|
|
|
}
|
|
|
|
|
2018-04-25 19:04:12 +01:00
|
|
|
}
|
|
|
|
}
|