migrate/.travis.yml

22 lines
397 B
YAML
Raw Normal View History

2014-08-11 03:42:57 +02:00
language: go
go:
- 1.3
- 1.4
- 1.5
2014-08-11 03:42:57 +02:00
- tip
addons:
postgresql: "9.3"
2014-08-26 19:45:56 -07:00
services:
- cassandra
2014-08-11 03:42:57 +02:00
before_script:
2014-08-26 19:45:56 -07: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 21:44:34 +02:00
- mysql -e 'create database migratetest;'
script: go test -p 1 ./...