2014-09-07 18:53:33 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# usage: travis.sh before|after
|
|
|
|
|
|
|
|
if [ $1 == 'before' ]; then
|
|
|
|
|
2016-09-13 23:55:58 +00:00
|
|
|
# Composer install fails in PHP 5.2
|
2017-01-16 18:48:59 +00:00
|
|
|
[[ ${TRAVIS_PHP_VERSION} == '5.2' ]] && exit;
|
2014-09-07 18:53:33 +00:00
|
|
|
|
2016-09-13 23:55:58 +00:00
|
|
|
# No Xdebug and therefore no coverage in PHP 5.3
|
2017-01-16 18:48:59 +00:00
|
|
|
[[ ${TRAVIS_PHP_VERSION} == '5.3' ]] && exit;
|
2016-09-13 23:55:58 +00:00
|
|
|
|
2017-03-14 17:17:35 +00:00
|
|
|
if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then
|
|
|
|
composer global require "phpunit/phpunit=5.7.*"
|
|
|
|
else
|
|
|
|
composer global require "phpunit/phpunit=4.8.*"
|
|
|
|
fi
|
|
|
|
|
2016-03-23 10:46:35 +00:00
|
|
|
composer self-update
|
2014-09-07 18:53:33 +00:00
|
|
|
composer install --no-interaction
|
|
|
|
|
2016-12-07 18:44:18 +00:00
|
|
|
elif [ $1 == 'during' ]; then
|
|
|
|
|
2017-01-16 18:48:59 +00:00
|
|
|
## Only run on latest stable PHP box (defined in .travis.yml).
|
|
|
|
if [[ ${TRAVIS_PHP_VERSION} == ${PHP_LATEST_STABLE} ]]; then
|
2016-12-07 19:48:35 +00:00
|
|
|
# WordPress Coding Standards.
|
|
|
|
# @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards
|
|
|
|
# @link http://pear.php.net/package/PHP_CodeSniffer/
|
|
|
|
# -p flag: Show progress of the run.
|
|
|
|
# -s flag: Show sniff codes in all reports.
|
|
|
|
# -v flag: Print verbose output.
|
|
|
|
# -n flag: Do not print warnings. (shortcut for --warning-severity=0)
|
|
|
|
# --standard: Use WordPress as the standard.
|
|
|
|
# --extensions: Only sniff PHP files.
|
2017-03-21 15:02:53 +00:00
|
|
|
./vendor/bin/phpcs -p -s -n ./*.php --standard=./phpcs.ruleset.xml --extensions=php
|
|
|
|
./vendor/bin/phpcs -p -s -n ./**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/*.php --ignore=./tests/*.php
|
|
|
|
./vendor/bin/phpcs -p -s -n ./**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/*.php --ignore=./tests/**/*.php
|
|
|
|
./vendor/bin/phpcs -p -s -n ./**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php --ignore=./tests/**/**/*.php
|
|
|
|
./vendor/bin/phpcs -p -s -n ./**/**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php --ignore=./tests/**/**/*.php
|
2016-12-07 19:48:35 +00:00
|
|
|
fi
|
2014-09-07 18:53:33 +00:00
|
|
|
|
2016-12-07 18:44:18 +00:00
|
|
|
elif [ $1 == 'after' ]; then
|
2014-09-07 18:53:33 +00:00
|
|
|
|
2017-01-25 21:28:57 +00:00
|
|
|
## Only run on master, not pull requests, latest stable PHP box (defined in .travis.yml).
|
|
|
|
if [[ ${TRAVIS_BRANCH} == 'master' ]] && [[ ${TRAVIS_EVENT_TYPE} != 'pull_request' ]] && [[ ${TRAVIS_PHP_VERSION} == ${PHP_LATEST_STABLE} ]]; then
|
2016-12-07 19:48:35 +00:00
|
|
|
wget https://scrutinizer-ci.com/ocular.phar
|
|
|
|
chmod +x ocular.phar
|
|
|
|
php ocular.phar code-coverage:upload --format=php-clover ./tmp/clover.xml
|
|
|
|
fi
|
2015-08-19 07:47:50 +00:00
|
|
|
|
2014-09-07 18:53:33 +00:00
|
|
|
fi
|