1 Star 0 Fork 64

Kubernetes技术栈/goInception

forked from hanchuanchuan/goInception 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 2.31 KB
一键复制 编辑 原始数据 按行查看 历史
language: go
go_import_path: github.com/hanchuanchuan/goInception
go:
- "1.12"
cache:
directories:
- $HOME/.cache/go-build
- $HOME/gopath/pkg/mod
services:
# - docker
- mysql
# SHORT=1 跳过goInception审核和执行测试
env:
- TRAVIS_COVERAGE=0
- TRAVIS_COVERAGE=1
# install:
# - netstat -nltp
# - docker run -p 4306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=travis -d mysql:5.7
# Run coverage tests.
matrix:
fast_finish: true
allow_failures:
- go: "1.12"
env: TRAVIS_COVERAGE=1
before_install:
# create /logs/unit-test for unit test.
- sudo mkdir /logs
- sudo touch /logs/unit-test
# See https://github.com/golang/go/issues/12933
- bash gitcookie.sh
- sudo chmod +x cmd/explaintest/run-tests.sh
- mysql -e 'select version()'
- mysql -e "show variables like '%buffer_pool%'"
- mysql -e "create database if not exists test DEFAULT CHARACTER SET utf8;create database if not exists test_inc DEFAULT CHARACTER SET utf8;"
- mysql -e "grant all on *.* to test@'127.0.0.1' identified by 'test';FLUSH PRIVILEGES;select '初始化成功!';"
# 关闭数据库,重启并开启binlog,设置字符集
- ps -ef|grep mysql
# 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=111' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
- "echo 'log-bin=on' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
- "echo 'binlog-format = row' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
- "echo 'gtid-mode = ON' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
- "echo 'enforce_gtid_consistency = ON' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
- "echo 'lower_case_table_names = 1' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
- "echo 'character_set_server = utf8' | sudo tee -a /etc/mysql/conf.d/replication.cnf"
# Start mysql (avoid errors to have logs)
- "sudo service mysql start || true"
- "sudo tail -100 /var/log/syslog"
- sudo tail -100 /var/log/mysql/error.log
# - sudo mysqld --lower_case_table_names=1 --log-bin=on --server_id=111 --character-set-server=utf8 &
- ps -ef|grep mysql
script:
- rm -f go.sum
# - docker ps
- travis_wait make dev upload-coverage
after_failure:
- netstat -nltp
- ps -ef|grep mysql
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/k8stech/goInception.git
git@gitee.com:k8stech/goInception.git
k8stech
goInception
goInception
master

搜索帮助