Testing dynamic Jenkinsfile
This commit is contained in:
parent
2fed3dc3d9
commit
24182c4be1
|
|
@ -0,0 +1,2 @@
|
||||||
|
FROM docker:dind
|
||||||
|
RUN apk add make
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
def implementations = ['chibi', 'chicken']
|
def implementations = ['chibi', 'chicken']
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent {
|
||||||
|
dockefile {
|
||||||
|
filename 'Dockerfile.jenkins'
|
||||||
|
}
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Testing') {
|
stage('Testing') {
|
||||||
steps {
|
steps {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue