Fixed failing travis builds
This commit is contained in:
parent
c83178d49e
commit
75b1551956
1 changed files with 23 additions and 19 deletions
42
.travis.yml
42
.travis.yml
|
|
@ -1,25 +1,29 @@
|
|||
language: php
|
||||
|
||||
sudo: false
|
||||
matrix:
|
||||
include:
|
||||
- php: hhvm-3.18
|
||||
dist: trusty
|
||||
- php: 5.3
|
||||
dist: precise
|
||||
- php: 5.4
|
||||
dist: trusty
|
||||
- php: 5.5
|
||||
dist: trusty
|
||||
- php: 5.6
|
||||
dist: xenial
|
||||
- php: 7.0
|
||||
dist: xenial
|
||||
- php: 7.1
|
||||
dist: bionic
|
||||
- php: 7.2
|
||||
dist: bionic
|
||||
- php: 7.3
|
||||
dist: bionic
|
||||
- php: 7.4
|
||||
dist: bionic
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.composer/
|
||||
|
||||
# Run tests against all these PHP versions
|
||||
# TODO: When it becomes possible in TravisCI, switch 7.4snapshot to plain 7.4
|
||||
php:
|
||||
- 5.4
|
||||
- 5.5
|
||||
- 5.6
|
||||
- 7.0
|
||||
- 7.1
|
||||
- 7.2
|
||||
- 7.3
|
||||
- 7.4snapshot
|
||||
- hhvm
|
||||
|
||||
before_script:
|
||||
install:
|
||||
- composer install --prefer-dist
|
||||
|
||||
script:
|
||||
|
|
|
|||
Loading…
Reference in a new issue