Skip to content

Commit

Permalink
Merge pull request #392 from github/travisci
Browse files Browse the repository at this point in the history
supporting TravisCI
  • Loading branch information
Shlomi Noach authored Apr 3, 2017
2 parents 1b0791e + 0d799b6 commit 050d1e2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
# http://docs.travis-ci.com/user/languages/go/
language: go

go:
- 1.6
- tip
go: 1.8

script: ./test.sh
os:
- linux

env:
- MYSQL_USER=root

before_install:
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'

install: true

script: script/cibuild

notifications:
email: false
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# gh-ost

[![build status](https://travis-ci.org/github/gh-ost.svg)](https://travis-ci.org/github/gh-ost) [![downloads](https://img.shields.io/github/downloads/github/gh-ost/total.svg)](https://github.com/github/gh-ost/releases) [![release](https://img.shields.io/github/release/github/gh-ost.svg)](https://github.com/github/gh-ost/releases)

#### GitHub's online schema migration for MySQL <img src="doc/images/gh-ost-logo-light-160.png" align="right">

`gh-ost` is a triggerless online schema migration solution for MySQL. It is testable and provides pausability, dynamic control/reconfiguration, auditing, and many operational perks.
Expand Down

0 comments on commit 050d1e2

Please sign in to comment.