github.com/interconnectedcloud/qdr-operator@v0.0.0-20210826174505-576d2b33dac7/Makefile (about) 1 2 .PHONY: all 3 all: build 4 5 .PHONY: dep 6 dep: 7 ./hack/go-dep.sh 8 9 .PHONY: format 10 format: 11 ./hack/go-fmt.sh 12 13 .PHONY: sdk-generate 14 sdk-generate: dep 15 operator-sdk generate k8s 16 17 .PHONY: vet 18 vet: 19 ./hack/go-vet.sh 20 21 .PHONY: test 22 test: 23 ./hack/go-test.sh 24 25 .PHONY: cluster-test 26 cluster-test: 27 go test --timeout=30m --count=1 -v "./test/e2e" 28 29 .PHONY: build 30 build: 31 ./hack/go-build.sh