From a4cc151f1fcf56745817de36d14c2dbceee6f7e0 Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Thu, 4 Jul 2019 21:44:12 +0530 Subject: [PATCH] fix(travis): Use MariaDB 10.3 instead of MySQL --- .travis.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 317cff12e2..c9b8249c04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,12 +6,10 @@ python: - 3.6 - 2.7 -services: - - mysql - addons: hosts: - test_site + mariadb: 10.3 git: depth: 1 @@ -32,9 +30,6 @@ install: - mysql -u root -e "SET GLOBAL character_set_server = 'utf8mb4'" - mysql -u root -e "SET GLOBAL collation_server = 'utf8mb4_unicode_ci'" - - mysql -u root -e "SET GLOBAL innodb_file_format=Barracuda" - - mysql -u root -e "SET GLOBAL innodb_file_per_table=ON" - - mysql -u root -e "SET GLOBAL innodb_large_prefix=1" - mysql -u root -e "CREATE DATABASE test_frappe" - mysql -u root -e "CREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe'"