With kubernetes 1.18 release of client-go, signatures on methods in generated clientsets, dynamic, metadata, and scale clients have been modified to accept context.Context as a first argument. Signatures of Create, Update, and Patch methods have been updated to accept CreateOptions, UpdateOptions and PatchOptions respectively. Signatures of Delete and DeleteCollection methods now accept DeleteOptions by value instead of by reference. These changes are now accommodated with this PR and client-go and dependencies are updated to v1.18.0 Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
14 lines
330 B
YAML
14 lines
330 B
YAML
language: go
|
|
dist: xenial
|
|
go:
|
|
- 1.12.x
|
|
- 1.13.x
|
|
script:
|
|
- diff -u <(echo -n) <(gofmt -d *.go)
|
|
- diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON)
|
|
- GO111MODULE=on go vet .
|
|
- GO111MODULE=on go test -v -race ./...
|
|
- git diff --exit-code
|
|
install:
|
|
- GO111MODULE=off go get golang.org/x/lint/golint
|