mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
83 lines
2.2 KiB
YAML
83 lines
2.2 KiB
YAML
language: php
|
|
|
|
matrix:
|
|
include:
|
|
- php: 7.1
|
|
env: STATIC_ANALYSIS=true RUN_RECTOR=true
|
|
- php: 7.1
|
|
env: COMPOSER_FLAGS="--prefer-lowest"
|
|
- php: 7.2
|
|
env: COVERAGE=true
|
|
- php: 7.2
|
|
env: STANDALONE=true
|
|
- php: 7.3
|
|
env: COMPOSER_FLAGS="--ignore-platform-reqs"
|
|
allow_failures:
|
|
- php: 7.2
|
|
env: STANDALONE=true
|
|
|
|
install:
|
|
- composer update $COMPOSER_FLAGS
|
|
|
|
before_script:
|
|
# disable xdebug
|
|
- if [[ $COVERAGE == "" ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi
|
|
# report inline scripts fails
|
|
- set -e
|
|
|
|
script:
|
|
- vendor/bin/phpunit
|
|
|
|
- |
|
|
if [[ $STATIC_ANALYSIS == true ]]; then
|
|
composer check-cs
|
|
composer phpstan-ci
|
|
fi
|
|
|
|
# Rector demo run
|
|
- |
|
|
if [[ $RUN_RECTOR == true ]]; then
|
|
bin/rector process src --level symfony40 --dry-run
|
|
composer docs
|
|
fi
|
|
|
|
# Run standalone install in non-root package, ref https://github.com/rectorphp/rector/issues/732
|
|
- |
|
|
if [[ $STANDALONE == true ]]; then
|
|
# 1. install locally
|
|
mkdir test-paths
|
|
cd test-paths
|
|
|
|
mkdir rector-dir
|
|
composer require rector/rector -d rector-dir
|
|
|
|
mkdir laravel-dir
|
|
composer create-project laravel/framework laravel-dir
|
|
composer dump-autoload --no-dev -d laravel-dir
|
|
|
|
# 2. run an nother project
|
|
rector-dir/vendor/bin/rector
|
|
|
|
cd laravel-dir
|
|
../rector-dir/vendor/bin/rector
|
|
|
|
# --hide-autoload-errors due to skipped dev deps and mixes tests in /src
|
|
../rector-dir/vendor/bin/rector process src --level code-quality --hide-autoload-errors -vvv --dry-run
|
|
fi
|
|
|
|
after_script:
|
|
# Coverage
|
|
- |
|
|
if [[ $COVERAGE == true && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]; then
|
|
vendor/bin/phpunit --coverage-clover coverage.xml
|
|
wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar
|
|
php php-coveralls.phar --verbose
|
|
fi
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
notifications:
|
|
email: false
|