mirror of
https://github.com/valitydev/bouncer.git
synced 2024-11-06 02:15:18 +00:00
24 lines
465 B
Plaintext
24 lines
465 B
Plaintext
|
#!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)
|
||
|
|
||
|
}
|