mirror of
https://github.com/valitydev/kds.git
synced 2024-11-06 00:05:18 +00:00
8c02949fcc
* IS-964: Add security pipeline * IS-964: Add secirity tools to pipeline * Switch to Erlang service pipe * Fix tests
23 lines
461 B
Groovy
23 lines
461 B
Groovy
#!groovy
|
|
// -*- mode: groovy -*-
|
|
|
|
def finalHook = {
|
|
runStage('store CT logs') {
|
|
archive '_build/test/logs/'
|
|
}
|
|
}
|
|
|
|
build('kds', '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(false, true)
|
|
}
|