sequences/Jenkinsfile

23 lines
466 B
Plaintext
Raw Permalink Normal View History

2017-09-07 13:26:47 +00:00
#!groovy
// -*- mode: groovy -*-
2017-09-05 12:09:03 +00:00
2017-09-07 13:26:47 +00:00
def finalHook = {
runStage('store CT logs') {
archive '_build/test/logs/'
}
}
build('sequences', 'docker-host', finalHook) {
checkoutRepo()
loadBuildUtils()
def pipeErlangService
2017-09-07 13:26:47 +00:00
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
env.SH_TOOLS = "build_utils/sh"
pipeErlangService = load("${env.JENKINS_LIB}/pipeErlangService.groovy")
2017-09-07 13:26:47 +00:00
}
pipeErlangService.runPipe(true,true)
}