Skip to content

Commit 87f4717

Browse files
authored
Merge pull request #110 from clue-labs/travis
Lock Travis distro so new defaults will not break the build
2 parents c98d8b7 + bbbdcd5 commit 87f4717

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
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.0
99
- 7.1
10-
- nightly
11-
- hhvm
10+
- nightly # ignore errors, see below
11+
- hhvm # ignore errors, see below
12+
13+
# lock distro so new future defaults will not break the build
14+
dist: trusty
1215

1316
matrix:
17+
include:
18+
- php: 5.3
19+
dist: precise
1420
allow_failures:
1521
- php: nightly
1622
- php: hhvm
1723

1824
install:
19-
- composer install --prefer-source
25+
- composer install --no-interaction
2026

2127
script:
2228
- vendor/bin/phpunit --coverage-text

0 commit comments

Comments
 (0)