Skip to content

Commit 8ee4fe9

Browse files
committed
Update Travis distro to precise, except for legacy PHP
1 parent d0b1152 commit 8ee4fe9

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
language: php
22

33
php:
4-
- 5.3
4+
# - 5.3 # requires old distro, see below
55
- 5.4
66
- 5.5
77
- 5.6
88
- 7
9+
- hhvm # ignore errors, see below
910

1011
# lock distro so new future defaults will not break the build
11-
dist: precise
12+
dist: trusty
1213

13-
# also test against HHVM, but require "trusty" and ignore errors
14-
# also test lowest dependencies on PHP 5.3 and PHP 7
14+
# also test lowest dependencies on PHP 7
1515
matrix:
1616
include:
1717
- php: 5.3
18-
env:
19-
- DEPENDENCIES=lowest
18+
dist: precise
2019
- php: 7.0
2120
env:
2221
- DEPENDENCIES=lowest
23-
- php: hhvm
24-
dist: trusty
2522
allow_failures:
2623
- php: hhvm
2724

25+
sudo: false
26+
2827
install:
2928
- composer install --no-interaction
3029
- if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi

0 commit comments

Comments
 (0)