35 lines
963 B
YAML
35 lines
963 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.9"
|
|
- "1.10"
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- mysql-5.7-trusty
|
|
packages:
|
|
- mysql-server
|
|
- mysql-client
|
|
|
|
before_install:
|
|
- sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
|
|
- sudo mysql_upgrade
|
|
|
|
# stop mysql and use row-based format binlog
|
|
- "sudo service mysql stop || true"
|
|
- "echo '[mysqld]' | sudo tee /etc/mysql/conf.d/replication.cnf"
|
|
- "echo 'server-id=1' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
|
|
- "echo 'log-bin=mysql' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
|
|
- "echo 'binlog-format = row' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
|
|
|
|
# Start mysql (avoid errors to have logs)
|
|
- "sudo service mysql start || true"
|
|
- "sudo tail -1000 /var/log/syslog"
|
|
|
|
- mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot
|
|
|
|
|
|
script:
|
|
- make test
|