mirror of
https://github.com/valitydev/bouncer-client-erlang.git
synced 2024-11-06 00:25:18 +00:00
d053efc9a3
* 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>
23 lines
457 B
Groovy
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)
|
|
}
|