mirror of
https://github.com/valitydev/sequences.git
synced 2024-11-06 02:05:20 +00:00
2ae0eeb4e3
* 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
23 lines
466 B
Groovy
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)
|
|
}
|