fix(ci): make tests-nim use docker image with nim installed
This commit is contained in:
parent
bbc7da7c7d
commit
d89e6b5ac6
|
@ -4,7 +4,12 @@ library 'status-jenkins-lib@v1.6.3'
|
||||||
def isPRBuild = utils.isPRBuild()
|
def isPRBuild = utils.isPRBuild()
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux' }
|
agent {
|
||||||
|
docker {
|
||||||
|
label 'linux'
|
||||||
|
image 'statusteam/nim-status-client-build:1.1.5'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
parameters {
|
parameters {
|
||||||
choice(
|
choice(
|
||||||
|
@ -43,20 +48,22 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Check') {
|
stage('Deps') {
|
||||||
steps { sh 'make tests-nim-linux' }
|
steps {
|
||||||
|
sh 'make update'
|
||||||
|
sh 'make deps'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Upload') {
|
stage('Tests') {
|
||||||
steps { script {
|
steps { sh 'make tests-nim-linux' }
|
||||||
env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText"
|
|
||||||
} }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
post {
|
post {
|
||||||
success { script { github.notifyPR(true) } }
|
success { script { github.notifyPR(true) } }
|
||||||
failure { script { github.notifyPR(false) } }
|
failure { script { github.notifyPR(false) } }
|
||||||
|
always { script { env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText" } }
|
||||||
cleanup { cleanWs() }
|
cleanup { cleanWs() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue