2014-08-11 01:42:57 +00:00
|
|
|
language: go
|
|
|
|
|
|
|
|
go:
|
|
|
|
- 1.2
|
|
|
|
- 1.3
|
|
|
|
- tip
|
|
|
|
|
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
|
|
|
|
2014-08-27 02:45:56 +00:00
|
|
|
services:
|
|
|
|
- cassandra
|
|
|
|
|
2014-08-11 01:42:57 +00:00
|
|
|
before_script:
|
2014-08-27 02:45:56 +00:00
|
|
|
- >
|
|
|
|
/usr/local/cassandra/bin/cqlsh -e "CREATE KEYSPACE migratetest WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor' : 1};"
|
2014-08-11 01:57:29 +00:00
|
|
|
- psql -c 'create database migratetest;' -U postgres
|
2014-09-16 19:44:34 +00:00
|
|
|
- mysql -e 'create database migratetest;'
|
2014-08-11 01:57:29 +00:00
|
|
|
|
|
|
|
script: go test -p 1 ./...
|