mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
df1c85ae5e
The tests against specific Symfony versions are now running only for a single PHP version to limit the number of jobs in the build matrix. They are also installing the full Symfony repo to be sure that all components are actually at the specified version without the need to require each of them explicitly.
31 lines
658 B
YAML
31 lines
658 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
matrix:
|
|
include:
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='2.1.*'
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='2.2.*'
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='2.3.*'
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='2.4.*'
|
|
- php: 5.5
|
|
env: SYMFONY_VERSION='dev-master'
|
|
allow_failures:
|
|
- env: SYMFONY_VERSION=dev-master
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
|
|
- composer install
|
|
|
|
script: phpunit --coverage-text
|