mirror of
https://github.com/valitydev/fistful-server.git
synced 2024-11-06 10:45:21 +00:00
26 lines
542 B
Groovy
26 lines
542 B
Groovy
#!groovy
|
|
// -*- mode: groovy -*-
|
|
|
|
def finalHook = {
|
|
runStage('store CT logs') {
|
|
archive '_build/test/logs/'
|
|
}
|
|
runStage('store services logs') {
|
|
archive 'test/log/'
|
|
}
|
|
}
|
|
|
|
build('fistful-server', 'docker-host', finalHook) {
|
|
checkoutRepo()
|
|
loadBuildUtils('build-utils')
|
|
|
|
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)
|
|
}
|