c200a54466
--HG-- extra : rebase_source : f8b07b7ebee8fb39978bd54d3a3ef5c30c4e5051
36 lines
814 B
Bash
36 lines
814 B
Bash
#!/usr/bin/env bash
|
|
|
|
PHP_VERSION=`php -v|grep --only-matching --perl-regexp "PHP 5\.\\d+"`
|
|
echo $PHP_VERSION
|
|
|
|
|
|
if [[ $PHP_VERSION != "PHP 5.4" ]]
|
|
then
|
|
echo "Bad PHP version"
|
|
exit
|
|
fi
|
|
|
|
echo "Good PHP version"
|
|
|
|
# Handle scrutinizer
|
|
wget https://scrutinizer-ci.com/ocular.phar
|
|
php ocular.phar code-coverage:upload --format=php-clover clover.xml
|
|
|
|
if [[ -z $SAUCE_ACCESS_KEY ]]
|
|
then
|
|
echo "No Sauce Api Key (Pull request)"
|
|
exit
|
|
fi
|
|
|
|
# Install dependencies
|
|
wget http://getcomposer.org/composer.phar
|
|
php composer.phar install
|
|
|
|
# Handle Sauce
|
|
curl https://gist.githubusercontent.com/seblucas/7692094/raw/e2a090e6ea639a0d700e6d02cee048fa2f6c8617/sauce_connect_setup.sh | bash
|
|
cp -v test/config_local.php.sauce config_local.php
|
|
php -S 127.0.0.1:8888 &
|
|
vendor/bin/phpunit --no-configuration test/Sauce.php
|
|
|
|
|