ceph-csi/.travis.yml
Madhu Rajanna 50ba8ed446 Fix gometalinter issues
Signed-off-by: Madhu Rajanna <mrajanna@redhat.com>
2019-01-29 11:24:36 +05:30

31 lines
585 B
YAML

# need for docker build
sudo: true
language: go
branches:
only:
- master
- csi-v1.0
go: 1.11.x
install:
- curl -L https://git.io/vp6lP | sh
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:
- gometalinter --deadline=10m -j 4 --enable=megacheck --enable=misspell --vendor ./...
- test -z $(gofmt -s -l $GO_FILES)
- make rbdplugin
- make cephfsplugin
deploy:
- provider: script
script:
- ./deploy.sh
on:
all_branches: true