bouncer-client-erlang/Jenkinsfile
Артем d053efc9a3
MSPF-621: Bouncer client (#1)
* added files

* inited sub modules

* added mock test

* updated from url shortener

* added tests

* fixed format

* Fix lint

* fixed compose

* added requested changes

* added more itfs

* removed service name, changed test to wc

* returned service name

Co-authored-by: Sergey Yelin <elinsn@gmail.com>
2020-11-18 13:41:20 +03:00

23 lines
457 B
Groovy

#!groovy
// -*- mode: groovy -*-
def finalHook = {
runStage('store CT logs') {
archive '_build/test/logs/'
}
}
build('bouncer_client_erlang', 'docker-host', finalHook) {
checkoutRepo()
loadBuildUtils()
def pipeErlangLib
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
env.SH_TOOLS = "build_utils/sh"
pipeErlangLib = load("${env.JENKINS_LIB}/pipeErlangLib.groovy")
}
pipeErlangLib.runPipe(false)
}