Maybe third time is a charm for Jenkins?
This commit is contained in:
parent
ccc9ad0c14
commit
8a7223593d
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -3,9 +3,9 @@ pipeline {
|
|||||||
stages {
|
stages {
|
||||||
stage('PHP 7.1') {
|
stage('PHP 7.1') {
|
||||||
agent {
|
agent {
|
||||||
|
docker { image 'php:7.1-alpine' }
|
||||||
label 'php-7.1'
|
label 'php-7.1'
|
||||||
}
|
}
|
||||||
docker { image 'php:7.1-alpine' }
|
|
||||||
steps {
|
steps {
|
||||||
sh 'build/docker_install.sh > /dev/null'
|
sh 'build/docker_install.sh > /dev/null'
|
||||||
'apk add --no-cache php7-phpdbg'
|
'apk add --no-cache php7-phpdbg'
|
||||||
@ -16,9 +16,9 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stage('PHP 7.2') {
|
stage('PHP 7.2') {
|
||||||
agent {
|
agent {
|
||||||
|
docker { image 'php:7.2-alpine' }
|
||||||
label 'php-7.2'
|
label 'php-7.2'
|
||||||
}
|
}
|
||||||
docker { image 'php:7.2-alpine' }
|
|
||||||
steps {
|
steps {
|
||||||
sh 'build/docker_install.sh > /dev/null'
|
sh 'build/docker_install.sh > /dev/null'
|
||||||
'apk add --no-cache php7-phpdbg'
|
'apk add --no-cache php7-phpdbg'
|
||||||
|
Loading…
Reference in New Issue
Block a user