Jenkins CI setup, try three
Some checks failed
Gitea - aviat/banker/master There was a failure building this commit
Some checks failed
Gitea - aviat/banker/master There was a failure building this commit
This commit is contained in:
parent
028e20bacc
commit
07de87d69d
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -2,6 +2,7 @@ pipeline {
|
|||||||
agent none
|
agent none
|
||||||
stages {
|
stages {
|
||||||
stage('PHP 7') {
|
stage('PHP 7') {
|
||||||
|
steps {
|
||||||
node {
|
node {
|
||||||
checkout scm
|
checkout scm
|
||||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||||
@ -16,7 +17,10 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
stage('PHP 7.1') {
|
stage('PHP 7.1') {
|
||||||
|
steps {
|
||||||
node {
|
node {
|
||||||
checkout scm
|
checkout scm
|
||||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||||
@ -31,7 +35,9 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stage('PHP 7.2') {
|
stage('PHP 7.2') {
|
||||||
|
steps {
|
||||||
node {
|
node {
|
||||||
checkout scm
|
checkout scm
|
||||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||||
@ -48,3 +54,4 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user