Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ CO developers can use this framework to create drivers based on the
[co_test.go](test/co_test.go) for an example.

## For CSI Driver Tests
To test drivers please take a look at [pkg/sanity](https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity)
To test drivers please take a look at [pkg/sanity](https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity).
This package and [csi-sanity](https://github.com/kubernetes-csi/csi-test/tree/master/cmd/csi-sanity) are meant to test
the CSI API capability of a driver. They are meant to be an additional test to the unit, functional, and e2e tests of a
CSI driver.

### Note

* Master is for CSI v0.2.0. Please use the branch v0.1.0 for CSI v0.1.0
* Master is for CSI v0.3.0. Please see the branches for other CSI releases.
* Only Golang 1.9+ supported. See [gRPC issue](https://github.com/grpc/grpc-go/issues/711#issuecomment-326626790)
5 changes: 1 addition & 4 deletions cmd/csi-sanity/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,13 @@ $(PACKAGE): $(APP_NAME)
linux_amd64_dist:
GOOS=linux GOARCH=amd64 $(MAKE) dist

linux_arm_dist:
GOOS=linux GOARCH=arm $(MAKE) dist

linux_arm64_dist:
GOOS=linux GOARCH=arm64 $(MAKE) dist

darwin_amd64_dist:
GOOS=darwin GOARCH=amd64 $(MAKE) dist

release: dist-clean darwin_amd64_dist linux_arm_dist linux_amd64_dist linux_arm64_dist
release: dist-clean darwin_amd64_dist linux_amd64_dist linux_arm64_dist

.PHONY: release darwin_amd64_dist linux_arm64_dist linux_amd64_dist \
linux_arm_dist linux_amd64_dist clean dist-clean