2011-11-13 17:48:51 +00:00
|
|
|
language: php
|
|
|
|
|
2015-03-04 15:48:39 +00:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt_packages:
|
|
|
|
- parallel
|
|
|
|
|
2013-01-11 20:47:32 +00:00
|
|
|
php:
|
2012-05-28 12:11:30 +00:00
|
|
|
- 5.3.3
|
2011-11-13 17:48:51 +00:00
|
|
|
- 5.3
|
|
|
|
- 5.4
|
2012-12-20 12:59:21 +00:00
|
|
|
- 5.5
|
2014-02-24 07:24:01 +00:00
|
|
|
- 5.6
|
2015-03-01 20:47:15 +00:00
|
|
|
- 7.0
|
2013-12-19 15:33:37 +00:00
|
|
|
- hhvm
|
2015-03-08 17:30:56 +00:00
|
|
|
- hhvm-nightly
|
|
|
|
|
|
|
|
matrix:
|
2015-03-09 08:22:39 +00:00
|
|
|
fast_finish: true
|
2015-03-08 17:30:56 +00:00
|
|
|
allow_failures:
|
|
|
|
- php: hhvm-nightly
|
2013-12-19 15:33:37 +00:00
|
|
|
|
2013-09-25 08:14:42 +00:00
|
|
|
before_script:
|
2013-12-19 15:33:37 +00:00
|
|
|
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
|
2015-03-04 15:48:39 +00:00
|
|
|
- composer install
|
|
|
|
- bin/composer install
|
2013-03-28 11:48:19 +00:00
|
|
|
- git config --global user.name travis-ci
|
|
|
|
- git config --global user.email travis@example.com
|
2011-11-13 18:01:46 +00:00
|
|
|
|
2013-09-25 08:14:42 +00:00
|
|
|
script:
|
2015-05-25 08:31:23 +00:00
|
|
|
- ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && $(exit 1));'
|
2014-04-30 10:06:02 +00:00
|
|
|
|
|
|
|
git:
|
2014-12-02 10:39:01 +00:00
|
|
|
depth: 5
|