From 5a3315ad5478799a2ff662eedbd45368f57bc78c Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sat, 4 Jul 2015 01:29:29 +0200 Subject: [PATCH] Scrutinizer CI: Unconfigure external code coverage. This keeps timing out. --- .scrutinizer.yml | 7 ------- .travis.yml | 1 - travis/upload-code-coverage-scrutinizer.sh | 13 ------------- 3 files changed, 21 deletions(-) delete mode 100644 .scrutinizer.yml delete mode 100755 travis/upload-code-coverage-scrutinizer.sh diff --git a/.scrutinizer.yml b/.scrutinizer.yml deleted file mode 100644 index a7de6a81..00000000 --- a/.scrutinizer.yml +++ /dev/null @@ -1,7 +0,0 @@ -imports: - - php - -tools: - external_code_coverage: - runs: 5 # No Code Coverage and HHVM - timeout: 10800 # 3 hours diff --git a/.travis.yml b/.travis.yml index fa932abe..3fb1d730 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,4 +31,3 @@ script: after_success: - sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage-html.sh; fi" - - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/upload-code-coverage-scrutinizer.sh; fi" diff --git a/travis/upload-code-coverage-scrutinizer.sh b/travis/upload-code-coverage-scrutinizer.sh deleted file mode 100755 index efcff08c..00000000 --- a/travis/upload-code-coverage-scrutinizer.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# This file is part of the phpseclib project. -# -# (c) Andreas Fischer -# -# For the full copyright and license information, please view the LICENSE -# file that was distributed with this source code. -# -set -e - -wget https://scrutinizer-ci.com/ocular.phar -php ocular.phar code-coverage:upload --format=php-clover code_coverage/clover.xml