Beego/.travis.yml

21 lines
800 B
YAML
Raw Normal View History

2016-01-08 07:34:02 +00:00
language: go
go:
- 1.5.1
services:
- redis-server
- mysql
- postgresql
- memcached
env:
- ORM_DRIVER=sqlite
- ORM_DRIVER=mysql
- ORM_DRIVER=postgres
before_script:
2016-01-08 14:34:23 +00:00
- sh -c "touch $HOME/db.sh; chmod 777 $HOME/db.sh;"
- sh -c "echo \"if [ '$ORM_DRIVER' = 'postgres' ]; then export ORM_SOURCE='user=postgres dbname=orm_test sslmode=disable'; psql -c 'create database orm_test;' -U postgres; fi\" >> $HOME/db.sh;"
- sh -c "echo \"if [ '$ORM_DRIVER' = 'mysql' ]; then export ORM_SOURCE='root:@/orm_test?charset=utf8'; mysql -u root -e 'create database orm_test;'; fi\" >> $HOME/db.sh;"
- sh -c "echo \"if [ '$ORM_DRIVER' = 'sqlite' ]; then export ORM_SOURCE=$TRAVIS_BUILD_DIR/orm_test.db; touch $TRAVIS_BUILD_DIR/orm_test.db; fi\" >> $HOME/db.sh;"
- sh -c "source $HOME/db.sh"