mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
4b10ae4863
While the current .travis.yml setup works, and the reasoning makes sense, it's far less readable than the previous configuration. This suggested patch presents an alternative approach to the same result, which uses the matrix->exclude array to filter out invalid tests, instead of hard-coding every valid combination as the current file does. This seems more readable, at least to me.
16 lines
334 B
YAML
16 lines
334 B
YAML
language: php
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
- hhvm
|
|
matrix:
|
|
exclude:
|
|
- php: hhvm
|
|
env: ENABLE_REDIS_EXT=1
|
|
env:
|
|
- ENABLE_REDIS_EXT=0
|
|
- ENABLE_REDIS_EXT=1
|
|
before_script:
|
|
- sh -c "if [ $ENABLE_REDIS_EXT -eq 1 ]; then echo \"extension=redis.so\" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi"
|
|
- composer install
|