migrate/.travis.yml

20 lines
388 B
YAML
Raw Normal View History

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};"
- psql -c 'create database migratetest;' -U postgres
2014-09-16 19:44:34 +00:00
- mysql -e 'create database migratetest;'
script: go test -p 1 ./...