fix load of github groovy module

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-06-10 22:10:07 -04:00
parent 66dafaef25
commit 7c1df4f3cd
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020

View File

@ -20,6 +20,7 @@ pipeline {
println "Current JOB: ${env.JOB_NAME}"
/* load common lib */
cmn = load('ci/common.groovy')
gh = load('ci/github.groovy')
/* just for a shorter access */
btype = cmn.utils.getBuildType()
} }
@ -95,7 +96,7 @@ pipeline {
steps { script {
switch (btype) {
case 'nightly': build('misc/status.im'); break
case 'release': cmn.gh.publishReleaseMobile(); break
case 'release': gh.publishReleaseMobile(); break
}
} }
}