Added PHP 7.3 support for travis (#1495)
* Added PHP 7.3 support for travis * mark php 7.3 as failable
This commit is contained in:
parent
18760620b3
commit
ea6edf95cc
10
.travis.yml
10
.travis.yml
|
|
@ -10,11 +10,19 @@ php:
|
||||||
- 7.0
|
- 7.0
|
||||||
- 7.1
|
- 7.1
|
||||||
- 7.2
|
- 7.2
|
||||||
|
- 7.3
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- php: 7.0
|
- php: 7.0
|
||||||
env: COVERAGE=1
|
env: COVERAGE=1
|
||||||
|
- php: 5.3
|
||||||
|
env: COMPOSER_MEMORY_LIMIT=2G
|
||||||
|
exclude:
|
||||||
|
- php: 7.0
|
||||||
|
- php: 5.3
|
||||||
|
allow_failures:
|
||||||
|
- php: 7.3
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|
@ -32,7 +40,7 @@ before_install:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
## Deactivate xdebug if we don't do code coverage
|
## Deactivate xdebug if we don't do code coverage
|
||||||
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini ; fi
|
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini || echo "xdebug not available" ; fi
|
||||||
## Composer
|
## Composer
|
||||||
- composer self-update
|
- composer self-update
|
||||||
- travis_wait composer install --prefer-source
|
- travis_wait composer install --prefer-source
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue