kds/Jenkinsfile
Sergey Yelin 8c02949fcc
update build utils security (#24)
* IS-964: Add security pipeline

* IS-964: Add secirity tools to pipeline

* Switch to Erlang service pipe

* Fix tests
2020-07-07 19:40:28 +03:00

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)
}