2016-08-31 13:43:32 +00:00
|
|
|
#!groovy
|
2017-10-25 16:49:20 +00:00
|
|
|
// -*- mode: groovy -*-
|
2016-08-31 13:43:32 +00:00
|
|
|
|
2016-10-18 21:21:16 +00:00
|
|
|
def finalHook = {
|
|
|
|
runStage('store CT logs') {
|
|
|
|
archive '_build/test/logs/'
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 13:43:32 +00:00
|
|
|
|
2016-10-18 21:21:16 +00:00
|
|
|
build('dmt_client', 'docker-host', finalHook) {
|
2016-08-31 13:43:32 +00:00
|
|
|
checkoutRepo()
|
2020-10-14 09:38:41 +00:00
|
|
|
loadBuildUtils("builtils")
|
2016-08-31 13:43:32 +00:00
|
|
|
|
2020-10-14 09:38:41 +00:00
|
|
|
def pipeErlangLib
|
2016-08-31 13:43:32 +00:00
|
|
|
runStage('load pipeline') {
|
|
|
|
env.JENKINS_LIB = "builtils/jenkins_lib"
|
2020-10-14 09:38:41 +00:00
|
|
|
env.SH_TOOLS = "builtils/sh"
|
|
|
|
pipeErlangLib = load("${env.JENKINS_LIB}/pipeErlangLib.groovy")
|
2016-08-31 13:43:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-14 09:38:41 +00:00
|
|
|
pipeErlangLib.runPipe(true, false, 'dialyze')
|
2016-08-31 13:43:32 +00:00
|
|
|
}
|