Merge pull request #439 from irfansharif/pre-go1.6-builds

Updated .travis.yml to ignore /examples/
This commit is contained in:
Simon Eskildsen 2016-11-08 14:08:11 -05:00 committed by GitHub
commit 1445b7a382
1 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,9 @@ go:
- 1.4
- 1.5
- 1.6
- 1.7
- tip
install:
- go get -t ./...
script: GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./...
- go get -t $(go list ./... | grep -v /examples/)
script:
- GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v $(go list ./... | grep -v /examples/)