Try something out on CI, again
timw4mail/php-kilo/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-03-11 14:52:37 -04:00
parent aa30ece762
commit eee60823b7
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
pipeline {
agent {
dockerfile {
args '-u root --privileged'
args '--privileged'
}
}
stages {
@ -10,7 +10,7 @@ pipeline {
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'
sh 'ls -al coverage'
}
}
}