2018-10-11 11:11:24 -04:00
|
|
|
pipeline {
|
|
|
|
agent none
|
|
|
|
stages {
|
|
|
|
stage('PHP 7.1') {
|
|
|
|
agent {
|
2018-10-11 11:54:27 -04:00
|
|
|
label 'php-7.1'
|
|
|
|
}
|
|
|
|
docker { image 'php:7.1-alpine' }
|
|
|
|
steps {
|
|
|
|
sh 'build/docker_install.sh > /dev/null'
|
|
|
|
'apk add --no-cache php7-phpdbg'
|
|
|
|
'curl -sS https://getcomposer.org/installer | php'
|
|
|
|
'php composer.phar install --ignore-platform-reqs'
|
|
|
|
'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
2018-10-11 11:11:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('PHP 7.2') {
|
|
|
|
agent {
|
2018-10-11 11:54:27 -04:00
|
|
|
label 'php-7.2'
|
|
|
|
}
|
|
|
|
docker { image 'php:7.2-alpine' }
|
|
|
|
steps {
|
|
|
|
sh 'build/docker_install.sh > /dev/null'
|
|
|
|
'apk add --no-cache php7-phpdbg'
|
|
|
|
'curl -sS https://getcomposer.org/installer | php'
|
|
|
|
'php composer.phar install --ignore-platform-reqs'
|
|
|
|
'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
2018-10-11 11:11:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|