checkout/Jenkinsfile

39 lines
748 B
Plaintext
Raw Normal View History

2016-10-13 12:14:48 +00:00
#!groovy
2016-10-17 17:52:17 +00:00
build('payform', 'docker-host') {
2016-10-13 12:14:48 +00:00
checkoutRepo()
loadBuildUtils()
def pipeDefault
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
pipeDefault = load("${env.JENKINS_LIB}/pipeDefault.groovy")
}
pipeDefault() {
//ToDo: npm stuff should be in a cache, when caching is implemented!
runStage('init') {
sh 'make wc_init'
}
runStage('build') {
sh 'make wc_build'
}
runStage('build image') {
sh 'make build_image'
}
try {
if (env.BRANCH_NAME == 'master') {
runStage('push image') {
sh 'make push_image'
}
}
} finally {
runStage('rm local image') {
sh 'make rm_local_image'
}
}
}
}