bouncer/Jenkinsfile
Andrew Mayorov 2e575b0654
Cut fragments ctx out of audit logs (#19)
They provide too much redundant information at no tangible benefit.

Also stop adding woody metadata to audit log events.
2021-02-08 11:12:39 +03:00

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)
}