From c873ef349cb2a09e63affd7f338550214d786096 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 11 Mar 2020 14:56:00 -0400 Subject: [PATCH] Try something out on CI, once more --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a9dc36a..73ab1b8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ pipeline { agent { dockerfile { - args '--privileged' + args '-u root --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 coverage' + sh 'ls -al clover.xml' } } }