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()
|
|
|
|
|
2020-07-07 11:41:40 +00:00
|
|
|
def pipeErlangService
|
2017-09-07 13:26:47 +00:00
|
|
|
runStage('load pipeline') {
|
|
|
|
env.JENKINS_LIB = "build_utils/jenkins_lib"
|
2020-07-07 11:41:40 +00:00
|
|
|
env.SH_TOOLS = "build_utils/sh"
|
|
|
|
pipeErlangService = load("${env.JENKINS_LIB}/pipeErlangService.groovy")
|
2017-09-07 13:26:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 11:41:40 +00:00
|
|
|
pipeErlangService.runPipe(true,true)
|
|
|
|
}
|