1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 11:54:54 +01:00
file/.travis.yml

46 lines
1.0 KiB
YAML
Raw Permalink Normal View History

2015-07-19 19:50:31 +02:00
sudo: false
2015-07-18 21:10:28 +02:00
language: php
2015-07-18 21:17:41 +02:00
2015-07-18 21:10:28 +02:00
php:
2016-08-24 06:58:25 +02:00
- 7.0
- 7.1
2017-12-01 03:02:03 +01:00
- 7.2
2016-08-24 06:58:25 +02:00
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
2015-07-18 21:17:41 +02:00
env:
- AMP_DEBUG=true
before_install:
- phpenv config-rm xdebug.ini || echo "No xdebug config."
2017-06-21 14:50:38 +02:00
install:
2017-12-03 03:15:36 +01:00
- composer update -n --prefer-dist
- travis/install-eio.sh
- travis/install-uv.sh
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar
- chmod +x coveralls.phar
2015-07-18 21:17:41 +02:00
2015-07-18 21:10:28 +02:00
script:
2017-12-17 20:56:45 +01:00
# PHPDBG segfaults on versions other than 7.0 currently
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then
phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml;
else
vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml;
fi
2017-06-21 14:50:38 +02:00
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
2015-07-19 18:22:16 +02:00
after_script:
2017-12-17 20:56:45 +01:00
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then ./coveralls.phar; fi
2016-08-24 06:58:25 +02:00
cache:
directories:
- $HOME/.composer/cache
2018-10-27 18:24:06 +02:00
- $HOME/.php-cs-fixer
- $HOME/.local