mirror of
https://github.com/valitydev/hellgate.git
synced 2024-11-06 02:45:20 +00:00
23 lines
474 B
Groovy
23 lines
474 B
Groovy
#!groovy
|
|
// -*- mode: groovy -*-
|
|
|
|
def finalHook = {
|
|
runStage('store CT logs') {
|
|
archive '_build/test/logs/'
|
|
}
|
|
}
|
|
|
|
build('hellgate', '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, 'test')
|
|
}
|