We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53ee09d commit 19b3135Copy full SHA for 19b3135
.travis.yml
@@ -8,7 +8,7 @@ php:
8
services:
9
- mysql
10
11
-sudo: false
+sudo: true
12
13
cache:
14
directories:
@@ -17,6 +17,12 @@ cache:
17
before_script:
18
- travis_retry composer self-update
19
- travis_retry composer update --no-interaction
20
+ - echo mysql-apt-config mysql-apt-config/select-server select mysql-5.7 | sudo debconf-set-selections
21
+ - wget https://dev.mysql.com/get/mysql-apt-config_0.7.3-1_all.deb
22
+ - sudo dpkg --install mysql-apt-config_0.7.3-1_all.deb
23
+ - sudo apt-get update -q
24
+ - sudo apt-get install -q -y --allow-unauthenticated -o Dpkg::Options::=--force-confnew mysql-server
25
+ - sudo mysql_upgrade
26
- mysql -e "create database IF NOT EXISTS testing;" -uroot;
27
28
script:
0 commit comments