mirror of
https://github.com/valitydev/machinery-erlang.git
synced 2024-11-06 00:35:19 +00:00
db7c94b991
* upgrade: +images +dialyzer as test +elvis
24 lines
460 B
Groovy
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')
|
|
}
|
|
|