Files
coredns/.travis.yml

13 lines
368 B
YAML
Raw Normal View History

2016-03-18 20:57:35 +00:00
language: go
go:
2016-03-19 07:37:20 +00:00
- 1.5
2016-03-18 20:57:35 +00:00
- 1.6
before_script:
- curl -L https://github.com/coreos/etcd/releases/download/v2.3.1/etcd-v2.3.1-linux-amd64.tar.gz -o etcd-v2.3.1-linux-amd64.tar.gz
- tar xzvf etcd-v2.3.1-linux-amd64.tar.gz
- ./etcd-v2.3.1-linux-amd64/etcd &
- go get
- go get github.com/coreos/go-etcd/etcd
script:
- go test -tags etcd -race -bench=. ./...