2016-09-05 12:21:44 +00:00
|
|
|
#!groovy
|
2017-05-26 09:18:44 +00:00
|
|
|
// -*- mode: groovy -*-
|
2016-09-05 12:21:44 +00:00
|
|
|
|
|
|
|
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
|
2016-09-05 12:21:44 +00:00
|
|
|
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")
|
2016-09-05 12:21:44 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 12:11:05 +00:00
|
|
|
pipeErlangService.runPipe(false, true)
|
2016-09-05 12:21:44 +00:00
|
|
|
}
|