mirror of
https://github.com/valitydev/woody_erlang.git
synced 2024-11-06 10:25:22 +00:00
66884b7020
* bump up erlang to 19.1 * fix Issue https://github.com/rbkmoney/woody_erlang/issues/44 * fix Issue https://github.com/rbkmoney/woody_erlang/issues/41 * fix some other bugs
44 lines
833 B
Groovy
44 lines
833 B
Groovy
#!groovy
|
|
|
|
def finalHook = {
|
|
runStage('store CT logs') {
|
|
archive '_build/test/logs/'
|
|
}
|
|
}
|
|
|
|
build('woody_erlang', 'docker-host', finalHook) {
|
|
checkoutRepo()
|
|
loadBuildUtils()
|
|
|
|
def pipeDefault
|
|
def withWsCache
|
|
runStage('load pipeline') {
|
|
env.JENKINS_LIB = "build_utils/jenkins_lib"
|
|
pipeDefault = load("${env.JENKINS_LIB}/pipeDefault.groovy")
|
|
withWsCache = load("${env.JENKINS_LIB}/withWsCache.groovy")
|
|
}
|
|
|
|
pipeDefault() {
|
|
runStage('compile') {
|
|
withGithubPrivkey {
|
|
sh 'make wc_compile'
|
|
}
|
|
}
|
|
runStage('lint') {
|
|
sh 'make wc_lint'
|
|
}
|
|
runStage('xref') {
|
|
sh 'make wc_xref'
|
|
}
|
|
runStage('dialyze') {
|
|
withWsCache("_build/default/rebar3_19.1_plt") {
|
|
sh 'make wc_dialyze'
|
|
}
|
|
}
|
|
runStage('test') {
|
|
sh "make wc_test"
|
|
}
|
|
}
|
|
}
|
|
|