Testing dynamic Jenkinsfile
This commit is contained in:
parent
24182c4be1
commit
dcb8bf1747
|
|
@ -2,10 +2,17 @@ def implementations = ['chibi', 'chicken']
|
|||
|
||||
pipeline {
|
||||
agent {
|
||||
dockefile {
|
||||
dockerfile {
|
||||
filename 'Dockerfile.jenkins'
|
||||
args '--user=root'
|
||||
}
|
||||
}
|
||||
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Testing') {
|
||||
steps {
|
||||
|
|
|
|||
Loading…
Reference in New Issue