Let's do CI with Jenkins
aviat/HummingBirdAnimeClient/develop There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2018-10-11 11:11:24 -04:00
parent 07cae83e15
commit 8100f6fd71
1 changed files with 29 additions and 0 deletions

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'
}
}
}
}
}