Skip to content

Commit eb32879

Browse files
authored
Merge pull request #49 from clue-labs/travis
Lock Travis distro so new defaults will not break the build
2 parents 8748d42 + 505dfbf commit eb32879

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +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+
- hhvm # ignore errors, see below
1011

1112
sudo: false
1213

13-
# also test against HHVM, but require "trusty" and ignore errors
14+
# lock distro so new future defaults will not break the build
15+
dist: trusty
16+
1417
matrix:
1518
include:
16-
- php: hhvm
17-
dist: trusty
19+
- php: 5.3
20+
dist: precise
1821
allow_failures:
1922
- php: hhvm
2023

2124
install:
22-
- composer install --prefer-source --no-interaction
25+
- composer install --no-interaction
2326

2427
script:
2528
- vendor/bin/phpunit --coverage-text

0 commit comments

Comments
 (0)