add travis

This commit is contained in:
astaxie 2016-01-08 15:34:02 +08:00
parent 01012fa898
commit 69bcbcdb31
1 changed files with 18 additions and 0 deletions

18
.travis.yml Normal file
View File

@ -0,0 +1,18 @@
language: go
go:
- 1.5.1
services:
- redis-server
- mysql
- postgresql
- memcached
env:
- ORM_DRIVER=sqlite
- ORM_DRIVER=mysql
- ORM_DRIVER=postgres
before_script:
- sh -c "if [ '$DB' = 'postgres' ]; then export ORM_SOURCE='user=postgres dbname=orm_test sslmode=disable'; psql -c 'create database orm_test;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then export ORM_SOURCE='root:@/orm_test?charset=utf8'; mysql -u root -e 'create database orm_test;'; fi"
- sh -c "if [ '$DB' = 'sqlite' ]; then export ORM_SOURCE=$TRAVIS_BUILD_DIR/orm_test.db; touch $TRAVIS_BUILD_DIR/orm_test.db; fi"