Skip to content

Commit ad45e03

Browse files
authored
Merge pull request #211 from clue-labs/travis
Lock Travis distro so new defaults will not break the build
2 parents 6de52b6 + 8ee4fe9 commit ad45e03

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.travis.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +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
9+
- hhvm # ignore errors, see below
1010

11+
# lock distro so new future defaults will not break the build
12+
dist: trusty
13+
14+
# also test lowest dependencies on PHP 7
1115
matrix:
1216
include:
1317
- php: 5.3
14-
env:
15-
- DEPENDENCIES=lowest
18+
dist: precise
1619
- php: 7.0
1720
env:
1821
- DEPENDENCIES=lowest
1922
allow_failures:
2023
- php: hhvm
2124

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

0 commit comments

Comments
 (0)