migrate/.travis.yml
John Weldon 879cc40d38 Fix travis build file to match reality
This project depends on github.com/gocql/gocql, which does not support
go 1.2.

Update the .travis.yml file to match that reality.

Add go 1.4 and 1.5 to the test matrix.
2015-09-11 18:30:08 -07:00

22 lines
397 B
YAML

language: go
go:
- 1.3
- 1.4
- 1.5
- tip
addons:
postgresql: "9.3"
services:
- cassandra
before_script:
- >
/usr/local/cassandra/bin/cqlsh -e "CREATE KEYSPACE migratetest WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor' : 1};"
- psql -c 'create database migratetest;' -U postgres
- mysql -e 'create database migratetest;'
script: go test -p 1 ./...