machinery-erlang/Jenkinsfile
dinama db7c94b991
upgrade: +images +dialyzer +elvis (#31)
* upgrade: +images +dialyzer as test +elvis
2021-02-05 15:37:36 +03:00

24 lines
460 B
Groovy

#!groovy
// -*- mode: groovy -*-
def finalHook = {
runStage('store CT logs') {
archive '_build/test/logs/'
}
}
build('machinery', 'docker-host', finalHook) {
checkoutRepo()
loadBuildUtils()
def pipeErlangLib
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
env.SH_TOOLS = "build_utils/sh"
pipeErlangLib = load("${env.JENKINS_LIB}/pipeErlangLib.groovy")
}
pipeErlangLib.runPipe(true, false, 'test')
}