Jenkins CI setup, try three
Some checks failed
Gitea - aviat/banker/master There was a failure building this commit

This commit is contained in:
Timothy Warren 2018-10-12 09:31:30 -04:00
parent 028e20bacc
commit 07de87d69d

7
Jenkinsfile vendored
View File

@ -2,6 +2,7 @@ pipeline {
agent none
stages {
stage('PHP 7') {
steps {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
@ -16,7 +17,10 @@ pipeline {
}
}
}
}
stage('PHP 7.1') {
steps {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
@ -31,7 +35,9 @@ pipeline {
}
}
}
}
stage('PHP 7.2') {
steps {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
@ -48,3 +54,4 @@ pipeline {
}
}
}
}