koffing/Jenkinsfile

47 lines
906 B
Plaintext
Raw Normal View History

#!groovy
build('koffing', 'docker-host') {
checkoutRepo()
loadBuildUtils()
def pipeDefault
2017-02-09 18:58:51 +00:00
def withWsCache
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
pipeDefault = load("${env.JENKINS_LIB}/pipeDefault.groovy")
2017-02-09 18:58:51 +00:00
withWsCache = load("${env.JENKINS_LIB}/withWsCache.groovy")
}
pipeDefault() {
runStage('init') {
withGithubSshCredentials {
2017-02-09 18:58:51 +00:00
withWsCache("node_modules") {
sh 'make wc_init'
}
}
}
runStage('build') {
sh 'make wc_build'
}
runStage('build image') {
sh 'make build_image'
}
runStage('test image') {
sh 'make test'
}
try {
if (env.BRANCH_NAME == 'master') {
runStage('push image') {
sh 'make push_image'
}
}
} finally {
runStage('rm local image') {
sh 'make rm_local_image'
}
}
}
}