Update mariadb to 10.2 to solve Travis failures

Our test suite is failing in Travis as it complains about not finding
`libmysqlclient-dev` which is needed for mysql2. But installing
`libmysqlclient-dev` conflicts with MariaDB 10.1. So I updated MariaDB
to 10.2 and mysql to the last version as the old one is not compatible
with MariaDB 10.2. The missed `libmysqlclient-dev` is not needed any
more.
This commit is contained in:
Ana María Martínez Gómez 2017-09-12 11:54:06 +02:00
parent b4d376e7be
commit 9f8836732d
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- "echo `phantomjs -v`" - "echo `phantomjs -v`"
addons: addons:
mariadb: '10.1' mariadb: '10.2'
notifications: notifications:
email: email:
on_success: change on_success: change

View file

@ -287,7 +287,7 @@ GEM
multi_json (1.12.1) multi_json (1.12.1)
multi_xml (0.5.5) multi_xml (0.5.5)
multipart-post (2.0.0) multipart-post (2.0.0)
mysql2 (0.4.2) mysql2 (0.4.9)
nenv (0.3.0) nenv (0.3.0)
netrc (0.11.0) netrc (0.11.0)
nokogiri (1.8.0) nokogiri (1.8.0)