capi-v2/Jenkinsfile

23 lines
462 B
Plaintext
Raw Normal View History

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