php-kilo/Jenkinsfile
Timothy Warren c873ef349c
All checks were successful
timw4mail/php-kilo/pipeline/head This commit looks good
Try something out on CI, once more
2020-03-11 14:56:00 -04:00

17 lines
406 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'
sh 'ls -al clover.xml'
}
}
}
}