mirror of
https://github.com/valitydev/woody_erlang.git
synced 2024-11-06 02:15:19 +00:00
649a8aba30
* Created hay handler to monitor connections * Review fixes #1 * Added hay as app dependency * Created metrics receiver for hackney * Removed filtering, added key tagging * Added metrics to tests * Removed non list key tagging option * Refactored metric updates * Moved hay to test deps * Strictened allowed metrics, enabled key mapping * Added privkey to dialyze CI step * Reordered privkey * Changed cache location * Hardcoded allowed metrics * Use tag for test deps * Collect info for all ranch listeners
47 lines
898 B
Groovy
47 lines
898 B
Groovy
#!groovy
|
|
// -*- mode: 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') {
|
|
withGithubPrivkey {
|
|
withWsCache("_build/test/rebar3_21.3.8.4_plt") {
|
|
sh 'make wc_dialyze'
|
|
}
|
|
}
|
|
}
|
|
runStage('test') {
|
|
sh "make wc_test"
|
|
}
|
|
}
|
|
}
|
|
|