1
0
Fork 0
composer/.travis.yml

59 lines
1.5 KiB
YAML
Raw Normal View History

2011-11-13 17:48:51 +00:00
language: php
sudo: false
2017-06-22 12:33:13 +00:00
2017-06-17 12:39:23 +00:00
dist: trusty
2017-06-22 12:33:13 +00:00
git:
depth: 5
cache:
directories:
- $HOME/.composer/cache
addons:
apt:
packages:
- parallel
php:
2011-11-13 17:48:51 +00:00
- 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
2016-09-14 09:33:43 +00:00
- 7.1
2015-10-27 10:12:43 +00:00
- nightly
matrix:
2017-06-17 12:39:23 +00:00
include:
- dist: precise
php: 5.3
fast_finish: true
2015-10-27 10:12:43 +00:00
allow_failures:
- php: nightly
2017-06-22 12:33:13 +00:00
before_install:
# determine INI file
- if [[ $TRAVIS_PHP_VERSION = hhvm* ]]; then export INI=/etc/hhvm/php.ini; else export INI=~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
# disable xdebug if available
- phpenv config-rm xdebug.ini || echo "xdebug not available"
# disable default memory limit
- echo memory_limit = -1 >> $INI
install:
# flags to pass to install
- flags="--ansi --prefer-dist --no-interaction --optimize-autoloader --no-suggest --no-progress"
# install dependencies using system provided composer binary
2015-10-28 02:52:53 +00:00
- composer install $flags
2017-06-22 12:33:13 +00:00
# install dependencies using composer from source
2015-10-28 02:52:53 +00:00
- bin/composer install $flags
2017-06-22 12:33:13 +00:00
before_script:
# make sure git tests do not complain about user/email not being set
- 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:
2017-06-22 12:33:13 +00:00
# run test suite directories in parallel using GNU parallel
2015-10-27 09:11:01 +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));'