File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,12 @@ CO developers can use this framework to create drivers based on the
88[ co_test.go] ( test/co_test.go ) for an example.
99
1010## For CSI Driver Tests
11- To test drivers please take a look at [ pkg/sanity] ( https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity )
11+ To test drivers please take a look at [ pkg/sanity] ( https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity ) .
12+ This package and [ csi-sanity] ( https://github.com/kubernetes-csi/csi-test/tree/master/cmd/csi-sanity ) are meant to test
13+ the CSI API capability of a driver. They are meant to be an additional test to the unit, functional, and e2e tests of a
14+ CSI driver.
1215
1316### Note
1417
15- * Master is for CSI v0.2 .0. Please use the branch v0.1.0 for CSI v0.1.0
18+ * Master is for CSI v0.3 .0. Please see the branches for other CSI releases.
1619* Only Golang 1.9+ supported. See [ gRPC issue] ( https://github.com/grpc/grpc-go/issues/711#issuecomment-326626790 )
Original file line number Diff line number Diff line change @@ -49,16 +49,13 @@ $(PACKAGE): $(APP_NAME)
4949linux_amd64_dist :
5050 GOOS=linux GOARCH=amd64 $(MAKE ) dist
5151
52- linux_arm_dist :
53- GOOS=linux GOARCH=arm $(MAKE ) dist
54-
5552linux_arm64_dist :
5653 GOOS=linux GOARCH=arm64 $(MAKE ) dist
5754
5855darwin_amd64_dist :
5956 GOOS=darwin GOARCH=amd64 $(MAKE ) dist
6057
61- release : dist-clean darwin_amd64_dist linux_arm_dist linux_amd64_dist linux_arm64_dist
58+ release : dist-clean darwin_amd64_dist linux_amd64_dist linux_arm64_dist
6259
6360.PHONY : release darwin_amd64_dist linux_arm64_dist linux_amd64_dist \
6461 linux_arm_dist linux_amd64_dist clean dist-clean
You can’t perform that action at this time.
0 commit comments