HummingBirdAnimeClient/Jenkinsfile

37 lines
947 B
Plaintext
Raw Normal View History

2018-10-11 11:11:24 -04:00
pipeline {
agent none
stages {
stage('PHP 7.1') {
agent {
2018-10-11 13:25:53 -04:00
docker {
image 'php:7.1-alpine'
args '-u root --privileged'
}
2018-10-11 11:54:27 -04:00
}
steps {
2018-10-11 13:06:58 -04:00
sh 'chmod +x ./build/docker_install.sh'
sh 'sh build/docker_install.sh'
2018-10-11 12:22:44 -04:00
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'
2018-10-11 11:11:24 -04:00
}
}
stage('PHP 7.2') {
agent {
2018-10-11 13:25:53 -04:00
docker {
image 'php:7.2-alpine'
args '-u root --privileged'
}
2018-10-11 11:54:27 -04:00
}
steps {
2018-10-11 13:06:58 -04:00
sh 'chmod +x ./build/docker_install.sh'
sh 'sh build/docker_install.sh'
2018-10-11 12:22:44 -04:00
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'
2018-10-11 11:11:24 -04:00
}
}
}
}