eee60823b7
Some checks failed
timw4mail/php-kilo/pipeline/head There was a failure building this commit
17 lines
396 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |