Update CI command
Gitea - aviat/ion/master This commit looks good Details

This commit is contained in:
Timothy Warren 2018-10-11 13:49:39 -04:00
parent ac798d840f
commit 69c3f0354e
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -14,7 +14,7 @@ pipeline {
sh 'apk add --no-cache php7-phpdbg'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
sh 'php composer.phar run-script coverage -- --coverage-text'
}
}
stage('PHP 7.1') {
@ -30,7 +30,7 @@ pipeline {
sh 'apk add --no-cache php7-phpdbg'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
sh 'php composer.phar run-script coverage -- --coverage-text'
}
}
stage('PHP 7.2') {
@ -46,7 +46,7 @@ pipeline {
sh 'apk add --no-cache php7-phpdbg'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
sh 'php composer.phar run-script coverage -- --coverage-text'
}
}
}