We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 24c8ca6 + 1f5c62d commit 1bfe1d7Copy full SHA for 1bfe1d7
1 file changed
.travis.yml
@@ -15,12 +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
28
+# optionally set up exclutions and allowed failures in the matrix
29
+matrix:
30
+ exclude:
31
+ - php: hhvm
32
+ env: DB=pgsql # PDO driver for pgsql is unsupported by HHVM (3rd party install for support)
33
+ allow_failures:
34
+ - php: 7.0
35
36
+
37
# execute any number of scripts before the test run, custom env's are available as variables
38
before_script:
39
- if [[ "$DB" == "pgsql" ]]; then psql -c "DROP DATABASE IF EXISTS hello_world_test;" -U postgres; fi
0 commit comments