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 29 additions and 0 deletions
Showing only changes of commit 8100f6fd71 - Show all commits

29
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,29 @@
pipeline {
agent none
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'
}
}
}
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'
}
}
}
}
}