mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
93e43d1a0f
This commit adds the Key protect client SDK for the Key Protect KMS integration to the Ceph CSI driver. Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
26 lines
516 B
YAML
26 lines
516 B
YAML
language: go
|
|
dist: xenial
|
|
|
|
go:
|
|
- 1.14.x
|
|
- 1.15.x
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
before_script:
|
|
- GO111MODULE=off go get -u github.com/haya14busa/goverage
|
|
|
|
install:
|
|
- go build ./...
|
|
|
|
script:
|
|
- $GOPATH/bin/goverage -v -race -coverprofile=cover.out $(go list ./... | grep -v '/vendor|/scripts')
|
|
- go tool cover -func=cover.out
|
|
- go tool cover -html=cover.out -o=cover.html
|
|
|
|
# FIXME: these scripts don't exist in this repo
|
|
# after_success:
|
|
# - ./scripts/calculateCoverage.sh
|
|
# - ./scripts/publishCoverage.sh
|