HummingBirdAnimeClient/Jenkinsfile

40 lines
934 B
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 22:27:47 -04:00
sh 'apk add --no-cache git'
2019-08-16 14:40:15 -04:00
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'rm -f composer.lock'
2020-03-11 16:26:17 -04:00
sh 'php composer.phar install --ignore-platform-reqs'
2020-03-11 15:29:34 -04:00
sh 'php ./vendor/bin/phpunit --colors=never'
2019-08-16 14:40:15 -04:00
}
}
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 22:27:47 -04:00
sh 'apk add --no-cache git php7-phpdbg'
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 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
2020-03-11 15:03:04 -04:00
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'build/logs/clover.xml',
2020-03-11 15:03:04 -04:00
])
2019-12-05 11:20:06 -05:00
}
}
}
}