Timothy J Warren
592e9d2c86
Some checks failed
aviat/HummingBirdAnimeClient/develop There was a failure building this commit
31 lines
841 B
Groovy
31 lines
841 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('PHP 7.1') {
|
|
agent {
|
|
docker { image 'php:7.1-alpine' }
|
|
}
|
|
steps {
|
|
sh 'chmod +x build/docker_install.sh'
|
|
sh 'build/docker_install.sh'
|
|
sh 'apk add --no-cache php7-phpdbg'
|
|
sh 'curl -sS https://getcomposer.org/installer | php'
|
|
sh 'php composer.phar install --ignore-platform-reqs'
|
|
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
|
}
|
|
}
|
|
stage('PHP 7.2') {
|
|
agent {
|
|
docker { image 'php:7.2-alpine' }
|
|
}
|
|
steps {
|
|
sh 'chmod +x build/docker_install.sh'
|
|
sh 'build/docker_install.sh'
|
|
sh 'apk add --no-cache php7-phpdbg'
|
|
sh 'curl -sS https://getcomposer.org/installer | php'
|
|
sh 'php composer.phar install --ignore-platform-reqs'
|
|
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
|
}
|
|
}
|
|
}
|
|
} |