Skip to content

Commit 17c1de0

Browse files
authored
Merge pull request #26 from clue-labs/travis
Lock Travis distro so new defaults will not break the build
2 parents 1c6d820 + 247796a commit 17c1de0

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

.travis.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
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-
- hhvm
10+
- hhvm # ignore errors, see below
11+
12+
# lock distro so new future defaults will not break the build
13+
dist: trusty
14+
15+
matrix:
16+
include:
17+
- php: 5.3
18+
dist: precise
19+
allow_failures:
20+
- php: hhvm
1121

1222
install:
1323
- composer install --no-interaction

0 commit comments

Comments
 (0)