diff --git a/.travis.yml b/.travis.yml index f757ac7e..43e51c44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,12 @@ install: - composer install --ignore-platform-reqs php: - - 7.2 - 7.3 - 7.4 - nightly script: - mkdir -p build/logs - - vendor/bin/robo lint - phpdbg -qrr -- vendor/bin/phpunit -c build after_script: diff --git a/Jenkinsfile b/Jenkinsfile index 6bd12afd..f0cebc50 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,6 @@ pipeline { sh 'curl -sS https://getcomposer.org/installer | php' sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' - sh 'php vendor/bin/robo lint' sh 'php ./vendor/bin/phpunit --colors=never' } } @@ -29,7 +28,6 @@ pipeline { sh 'curl -sS https://getcomposer.org/installer | php' sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' - sh 'php vendor/bin/robo lint' sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --coverage-clover clover.xml --colors=never' step([ $class: 'CloverPublisher',