2018-05-30 14:45:42 +00:00
|
|
|
#!groovy
|
|
|
|
// -*- mode: groovy -*-
|
|
|
|
|
|
|
|
def finalHook = {
|
|
|
|
runStage('store CT logs') {
|
|
|
|
archive '_build/test/logs/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
build('machinery', 'docker-host', finalHook) {
|
|
|
|
checkoutRepo()
|
|
|
|
loadBuildUtils()
|
|
|
|
|
2020-07-27 15:59:34 +00:00
|
|
|
def pipeErlangLib
|
2018-05-30 14:45:42 +00:00
|
|
|
runStage('load pipeline') {
|
|
|
|
env.JENKINS_LIB = "build_utils/jenkins_lib"
|
2020-07-27 15:59:34 +00:00
|
|
|
env.SH_TOOLS = "build_utils/sh"
|
|
|
|
pipeErlangLib = load("${env.JENKINS_LIB}/pipeErlangLib.groovy")
|
2018-05-30 14:45:42 +00:00
|
|
|
}
|
|
|
|
|
2021-02-05 12:37:36 +00:00
|
|
|
pipeErlangLib.runPipe(true, false, 'test')
|
2018-05-30 14:45:42 +00:00
|
|
|
}
|
2020-07-27 15:59:34 +00:00
|
|
|
|