Skip to content

Commit 669fad1

Browse files
committed
Add PHP 7, HHVM and sqlite
1 parent 24c8ca6 commit 669fad1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,25 @@ php:
1515
- 5.5
1616
# aliased to a recent 5.6.x version
1717
- 5.6
18+
# aliased to a recent 7.x version
19+
- 7.0
20+
# aliased to a recent hhvm version
21+
- hhvm
1822

1923
# optionally specify a list of environments, for example to test different RDBMS
2024
env:
2125
- DB=mysql
2226
- DB=pgsql
27+
- DB=sqlite
28+
29+
# optionally set up exclutions and allowed failures in the matrix
30+
matrix:
31+
exclude:
32+
- php: hhvm
33+
env: DB=pgsql # PDO driver for pgsql is unsupported by HHVM (3rd party install for support)
34+
allow_failures:
35+
- php: 7.0
36+
- php: hhvm
2337

2438
# execute any number of scripts before the test run, custom env's are available as variables
2539
before_script:

0 commit comments

Comments
 (0)