php-kilo/Jenkinsfile
Timothy Warren 1e4735ee38
Some checks failed
timw4mail/php-kilo/pipeline/head There was a failure building this commit
Clover code coverage, try again
2020-03-11 14:59:34 -04:00

21 lines
544 B
Groovy

pipeline {
agent {
dockerfile {
args '-u root --privileged'
}
}
stages {
stage('PHP 7.4') {
steps {
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install'
sh 'phpdbg -dffi.enable=1 -qrr -- ./vendor/bin/phpunit --coverage-text --coverage-clover clover.xml --colors=never -c phpunit.xml tests'
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'clover.xml',
])
}
}
}
}