ceph-csi/.travis.yml
2018-12-10 11:05:25 -05:00

28 lines
495 B
YAML

# need for docker build
sudo: true
language: go
branches:
only:
- master
- csi-v1.0
go: 1.9.x
before_script:
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/)
- go get -u golang.org/x/lint/golint #go get github.com/golang/lint/golint
script:
- test -z $(gofmt -s -l $GO_FILES)
- go vet -v $(go list ./... | grep -v /vendor/)
- make rbdplugin
- make cephfsplugin
deploy:
- provider: script
script:
- ./deploy.sh
on:
all_branches: true