sequences/Jenkinsfile
Sergey Yelin 2ae0eeb4e3
Update build utils security (#17)
* IS-964: Add security pipeline

* Add Erlang Service pipe

* Run tests in parallel

* Fix run in parallel

* Fix build_utils commit

* run -> runPipe

* Back to call

* Fix dialyzer cache

* Fix join

* Rework parallel

* Fix config

* Xhange pipe method

* New parallel

* Do not force run stages in parallel

* More on parallel

* Add pipeline to parallel

* test

* remove unknown

* test

* typo1

* Final cleanup

* Anothr try

* Rework parallel

* One more test

* Fix parallel run

* Return stages back

* Update

* Update build_utils
2020-07-07 14:41:40 +03:00

23 lines
466 B
Groovy

#!groovy
// -*- mode: groovy -*-
def finalHook = {
runStage('store CT logs') {
archive '_build/test/logs/'
}
}
build('sequences', '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)
}