ceph-csi/.travis.yml
Madhu Rajanna 3132130e83 Fix CI failure for gometalinter
Signed-off-by: Madhu Rajanna <mrajanna@redhat.com>
2019-02-04 19:59:18 +05:30

37 lines
729 B
YAML

# need for docker build
sudo: true
language: go
branches:
only:
- master
- csi-v1.0
go: 1.11.x
env:
global:
- GO_METALINTER_VERSION="v3.0.0"
install:
# install gometalinter
- curl -L
"https://raw.githubusercontent.com/alecthomas/gometalinter/"${GO_METALINTER_VERSION}"/scripts/install.sh"
| bash -s -- -b $GOPATH/bin "${GO_METALINTER_VERSION}"
before_script:
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/)
script:
- gometalinter --deadline=10m -j 4 --enable=misspell --enable=staticcheck --vendor ./...
- test -z $(gofmt -s -l $GO_FILES)
- make rbdplugin
- make cephfsplugin
deploy:
- provider: script
script:
- ./deploy.sh
on:
all_branches: true