4.1 Beta...ish #12

Merged
timw4mail merged 88 commits from develop into master 2018-11-05 13:15:59 -05:00
1 changed files with 18 additions and 16 deletions
Showing only changes of commit 562e88dc43 - Show all commits

34
Jenkinsfile vendored
View File

@ -3,26 +3,28 @@ pipeline {
stages {
stage('PHP 7.1') {
agent {
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'
}
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'
}
}
stage('PHP 7.2') {
agent {
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'
}
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'
}
}
}