Skip to content

Commit 798ec7c

Browse files
committed
Add MySQL 8.0 to test matrix.
MySQL Server 8.0.3 is now RC. Explicitly specify some MySQL Server options that have changed defaults in 8.0.
1 parent 7eebecc commit 798ec7c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.ci/docker-run.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ docker run -d \
3333
-p $PORT:3306 \
3434
--name $NAME \
3535
-e MYSQL_ROOT_PASSWORD='test' \
36-
$IMAGE
36+
$IMAGE \
37+
--log-bin-trust-function-creators=1 \
38+
--local-infile=1 \
39+
--secure-file-priv=/var/tmp
3740

3841
for i in `seq 1 30`; do
3942
# wait for mysql to come up

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ env:
99
- IMAGE=mysql:5.7
1010
NAME=mysql
1111
FEATURES=Json,StoredProcedures,Sha256Password,LargePackets
12+
- IMAGE=mysql:8.0
13+
NAME=mysql
14+
FEATURES=Json,StoredProcedures,Sha256Password,LargePackets
1215
- IMAGE=percona:5.7
1316
NAME=percona
1417
FEATURES=Json,StoredProcedures,Sha256Password,OpenSsl,LargePackets

0 commit comments

Comments
 (0)