forked from docker-archive/classicswarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (20 loc) · 813 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: go
go:
- 1.7.1
# let us have speedy Docker-based Travis workers
sudo: false
install:
# Symlink below is needed for Travis CI to work correctly on personal forks of swarm
- ln -s $HOME/gopath/src/github.com/${TRAVIS_REPO_SLUG///swarm/} $HOME/gopath/src/github.com/docker
- go get github.com/golang/lint/golint
- go get github.com/GeertJohan/fgt
script:
- script/validate-gofmt
- go vet `go list ./... | grep -v /vendor/`
- fgt golint ./... | grep -v vendor/ | tee /dev/stderr
# Lint shell files and make sure they are not space indented.
- fgt find test/ -type f \( -name "*.sh" -or -name "*.bash" -or -name "*.bats" \) -exec grep -Hn -e "^ " {} \;
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- go test -v -race `go list ./... | grep -v /vendor/`