We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24c8ca6 commit 669fad1Copy full SHA for 669fad1
.travis.yml
@@ -15,11 +15,25 @@ php:
15
- 5.5
16
# aliased to a recent 5.6.x version
17
- 5.6
18
+ # aliased to a recent 7.x version
19
+ - 7.0
20
+ # aliased to a recent hhvm version
21
+ - hhvm
22
23
# optionally specify a list of environments, for example to test different RDBMS
24
env:
25
- DB=mysql
26
- 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
37
38
# execute any number of scripts before the test run, custom env's are available as variables
39
before_script:
0 commit comments