mirror of
https://github.com/valitydev/bouncer.git
synced 2024-11-06 02:15:18 +00:00
2e575b0654
They provide too much redundant information at no tangible benefit. Also stop adding woody metadata to audit log events.
24 lines
466 B
Groovy
24 lines
466 B
Groovy
#!groovy
|
|
// -*- mode: groovy -*-
|
|
|
|
def finalHook = {
|
|
runStage('store CT logs') {
|
|
archive '_build/test/logs/'
|
|
}
|
|
}
|
|
|
|
build('bouncer', 'docker-host', finalHook) {
|
|
checkoutRepo()
|
|
loadBuildUtils()
|
|
|
|
def pipeErlangService
|
|
runStage('load pipeline') {
|
|
env.JENKINS_LIB = "build_utils/jenkins_lib"
|
|
env.SH_TOOLS = "build_utils/sh"
|
|
pipeErlangService = load("${env.JENKINS_LIB}/pipeErlangService.groovy")
|
|
}
|
|
|
|
pipeErlangService.runPipe(true, false)
|
|
|
|
}
|