New builds
This commit is contained in:
parent
2777cfa5b0
commit
74f5577dfe
|
|
@ -21,8 +21,15 @@ pipeline {
|
|||
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
||||
}
|
||||
|
||||
environment {
|
||||
BUILDS="chibi"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('chibi') {
|
||||
steps {
|
||||
script {
|
||||
env.BUILDS.split().each { build ->
|
||||
stage('${build}') {
|
||||
agent {
|
||||
docker {
|
||||
image "schemers/chibi:head"
|
||||
|
|
@ -42,6 +49,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
success {
|
||||
|
|
|
|||
Loading…
Reference in New Issue