parallel-functions/.travis.yml
Niklas Keller 74c8b5f145 Fix intentional example error and improve Travis build
Examples are now executed in a subshell, so a failure doesn't terminate the complete build.
2017-12-13 23:40:53 +01:00

39 lines
873 B
YAML

sudo: false
language: php
php:
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
env:
- AMP_DEBUG=true
before_install:
- phpenv config-rm xdebug.ini || echo "No xdebug config."
install:
- composer update -n --prefer-dist
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar
- chmod +x coveralls.phar
script:
# Run with phpdbg or xdebug as soon as one of both doesn't segfault anymore
- vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
- (for f in examples/*.php; do echo $f && if ! php $f; then echo '!! failed !!' && exit 1; fi && echo "-------"; done)
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
after_script:
- ./coveralls.phar -v
cache:
directories:
- $HOME/.composer/cache/files