File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 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
2024env :
2125 - DB=mysql
2226 - DB=pgsql
2327
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+ - php : hhvm
36+
2437# execute any number of scripts before the test run, custom env's are available as variables
2538before_script :
2639 - if [[ "$DB" == "pgsql" ]]; then psql -c "DROP DATABASE IF EXISTS hello_world_test;" -U postgres; fi
You can’t perform that action at this time.
0 commit comments