summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/go-gorp/gorp/.travis.yml
blob: 6df5edf1cbed3f652c8295162f76dac3317d97c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: go
go:
  - 1.2
  - 1.3
  - 1.4
  - tip

services:
 - mysql
 - postgres
 - sqlite3

before_script:
 - mysql -e "CREATE DATABASE gorptest;"
 - mysql -u root -e "GRANT ALL ON gorptest.* TO gorptest@localhost IDENTIFIED BY 'gorptest'"
 - psql -c "CREATE DATABASE gorptest;" -U postgres
 - psql -c "CREATE USER "gorptest" WITH SUPERUSER PASSWORD 'gorptest';" -U postgres
 - go get github.com/lib/pq
 - go get github.com/mattn/go-sqlite3
 - go get github.com/ziutek/mymysql/godrv
 - go get github.com/go-sql-driver/mysql

script: ./test_all.sh