php-kilo/Jenkinsfile
Timothy Warren aa30ece762
All checks were successful
timw4mail/php-kilo/pipeline/head This commit looks good
Try something out of CI
2020-03-11 14:47:20 -04:00

17 lines
395 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'
}
}
}
}