aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-01-27 21:56:21 +0100
committerKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-03-14 20:40:53 +0100
commitcb2eee1d2e82be62118482fb2668561c193a012b (patch)
tree51ae601142342ae1537e068fd0890b8e32460ca8 /.travis.yml
parent8e80500ee68972eef7d9c004823d1a547270334f (diff)
downloadvolse-hubzilla-cb2eee1d2e82be62118482fb2668561c193a012b.tar.gz
volse-hubzilla-cb2eee1d2e82be62118482fb2668561c193a012b.tar.bz2
volse-hubzilla-cb2eee1d2e82be62118482fb2668561c193a012b.zip
:construction_worker: Add old MySQL 5.5 to Travis CI again.
The trusty distro contains MySQL 5.6. Add a precise distro with MySQL 5.5. Unfortunately 5.7 is not yet provided, which would be interesting because of the enabled strict SQL mode.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 10 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 4fac4246a..323c48f7f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,7 +28,7 @@ addons:
- graphviz
- ttf-liberation
-# enable and start databases?
+# enable and start databases on a per job basis
#services:
# - mariadb
# - postgresql
@@ -52,7 +52,8 @@ env:
- PHPUCOV: "--no-coverage"
# use matrix only for PHP and MySQL, all other combinations added through includes
matrix:
- - DB=mysql
+ # trusty default MySQL 5.6
+ - DB=mysql MYSQL_VERSION=5.6
# Matrix configuration details
matrix:
@@ -73,7 +74,13 @@ matrix:
postgresql: '9.6'
services:
- postgresql
- # Exclude from default matrix combinations
+ # PHP7.1, old precise distribution with MySQL 5.5
+ - php: '7.1'
+ env: DB=mysql MYSQL_VERSION=5.5
+ dist: precise
+ services:
+ - mysql
+ # Excludes from default matrix combinations
# exclude:
# - php: hhvm
# env: DB=pgsql # PDO driver for pgsql is unsupported by HHVM (3rd party install for support)