HummingBirdAnimeClient/Jenkinsfile

42 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-10-11 11:11:24 -04:00
pipeline {
agent none
stages {
2019-08-16 14:40:15 -04:00
stage('PHP 7.3') {
agent {
docker {
image 'php:7.3-alpine'
args '-u root --privileged'
}
}
steps {
2020-03-11 15:24:15 -04:00
sh 'apk add --no-cache php7-phpdbg php7-xsl php7-gd php7-json php7-pdo'
2019-08-16 14:40:15 -04:00
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'rm -f composer.lock'
sh 'php composer.phar install'
sh 'php vendor/bin/robo lint'
2019-08-16 14:40:15 -04:00
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}
}
2019-12-05 11:20:06 -05:00
stage('PHP 7.4') {
agent {
docker {
image 'php:7.4-alpine'
args '-u root --privileged'
}
}
steps {
2020-03-11 15:24:15 -04:00
sh 'apk add --no-cache php7-phpdbg php7-xsl php7-gd php7-json php7-pdo'
2019-12-05 11:20:06 -05:00
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'rm -f composer.lock'
2019-12-05 11:20:06 -05:00
sh 'php composer.phar install --ignore-platform-reqs'
sh 'php vendor/bin/robo lint'
2020-03-11 15:03:04 -04:00
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --coverage-clover clover.xml --colors=never'
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'clover.xml',
])
2019-12-05 11:20:06 -05:00
}
}
}
}