php-kilo/Jenkinsfile
Timothy Warren eee60823b7
Some checks failed
timw4mail/php-kilo/pipeline/head There was a failure building this commit
Try something out on CI, again
2020-03-11 14:52:37 -04:00

17 lines
396 B
Groovy

pipeline {
agent {
dockerfile {
args '--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 coverage'
}
}
}
}