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