deployer/.travis.yml
Anton Medvedev 607cd54578 Update .travis.yml
PHPUnit fails with 255 code on HHVM.
2016-05-06 12:49:41 +07:00

35 lines
546 B
YAML

language: php
sudo: required
php:
- 5.5
- 5.6
- 7.0
matrix:
allow_failures:
- php: hhvm
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS="--prefer-stable"
install:
- eval `ssh-agent -s`
- test/travis/setup-secure-shell.sh
- composer self-update
- composer update --no-interaction --prefer-source $COMPOSER_FLAGS
script:
- phpunit
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3ffa605389816ec39774
on_success: change
on_failure: always
on_start: never