mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 00:04:15 -04:00
Liberal as it as it still has its use. Reject invalid domain names in the config. Unrelated: clear up the README as well. And fix travis script.
14 lines
342 B
YAML
14 lines
342 B
YAML
language: go
|
|
go:
|
|
- 1.5
|
|
- 1.6
|
|
before_script:
|
|
- go get
|
|
- go get github.com/coreos/etcd
|
|
- go get github.com/coreos/go-etcd/etcd
|
|
- go build -o $HOME/gopath/src/github.com/coreos/etcd/etcd.run github.com/coreos/etcd
|
|
- $HOME/gopath/src/github.com/coreos/etcd/etcd.run &
|
|
- sleep 2
|
|
script:
|
|
- go test -tags etcd -race -bench=. ./...
|