mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
9eaa55506f
This commit updates controller-runtime to v0.9.2 and makes changes in persistentvolume.go to add context to various functions and function calls made here instead of context.TODO(). Signed-off-by: Rakshith R <rar@redhat.com>
13 lines
273 B
YAML
13 lines
273 B
YAML
language: go
|
|
arch:
|
|
- amd64
|
|
- ppc64le
|
|
install:
|
|
- go get -t
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- go test -race -v ./...
|
|
after_script:
|
|
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
|