mirror of
https://github.com/valitydev/bouncer.git
synced 2024-11-06 02:15:18 +00:00
9004e3fe50
Co-authored-by: Andrey Fadeev <me@ciiol.net>
24 lines
465 B
Groovy
24 lines
465 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, true)
|
|
|
|
}
|