php-kilo/Jenkinsfile
Timothy J Warren 462e0d2731
Some checks failed
Gitea - Tutorials/php-kilo/master There was a failure building this commit
Move phpdbg install to Dockerfile
2019-12-04 16:21:56 -05:00

12 lines
294 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('PHP 7.4') {
steps {
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never -c phpunit.xml tests'
}
}
}
}