mirror of
https://github.com/valitydev/hellgate.git
synced 2024-11-06 02:45:20 +00:00
e2240008a0
* some initial changes * update hg_client * change adjustment to payment adjustment in tests * update damsel * types in client * Revert "change adjustment to payment adjustment in tests" This reverts commit ff1633c41660b6f144f75ae067ea63eb33906981. * rename payment adjustment functions * fix hg_client adjustment calls * update invoice events header * add invoice adjustment tests * working invoice adjustments * uncomment other invoice tests * minor cleanup * fix some types * fix more types * temporarily comment out non-operational tests * fix actions * add more tests * add exceptions * run ci with disabled invoice adjustment tests * Switch ti sequential * uncomment tests * minor cleanup * uncomment pm tests * add extra asserts * add logging * remove tests from invoice suite * add invoice adjustment test suite * minor cleanup * fix test crashes * minor cleanup * more cleaning * update invalid status exception handling * increase party client timeout * increase get timeout * add pending payment test * add pending adjustment test * update tests * update damsel * update handling * add expiration tests * refactor tests * update expiration handling * tests cleanup * do not expire while pending * update timeouts Co-authored-by: Sergey Yelin <elinsn@gmail.com>
23 lines
465 B
Groovy
23 lines
465 B
Groovy
#!groovy
|
|
// -*- mode: groovy -*-
|
|
|
|
def finalHook = {
|
|
runStage('store CT logs') {
|
|
archive '_build/test/logs/'
|
|
}
|
|
}
|
|
|
|
build('hellgate', '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,false)
|
|
}
|