This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from cloudfoundry-incubator/rohit/make
fixing make targets
- Loading branch information
Showing
13 changed files
with
91 additions
and
102 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,58 @@ | ||
all: test-unit build image | ||
#!/usr/bin/env make | ||
|
||
.PHONY: build | ||
build: | ||
bin/build | ||
all: tools test-unit test-integration test-e2e build | ||
|
||
image: | ||
bin/build-image | ||
up: | ||
bin/up | ||
|
||
image-nobuild: | ||
bin/build-nobuild-image | ||
vet: | ||
bin/vet | ||
|
||
.PHONY: helm | ||
helm: | ||
bin/build-helm | ||
lint: | ||
bin/lint | ||
|
||
export CF_OPERATOR_NAMESPACE ?= default | ||
up: | ||
bin/up | ||
tools: | ||
bin/tools | ||
|
||
up-nobuild: | ||
bin/up-nobuild | ||
check-scripts: | ||
bin/check-scripts | ||
|
||
gen-kube: | ||
bin/gen-kube | ||
############ BUILD TARGETS ############ | ||
|
||
gen-fakes: | ||
bin/gen-fakes | ||
build: | ||
bin/build | ||
|
||
verify-gen-kube: | ||
bin/verify-gen-kube | ||
build-image: | ||
bin/build-image | ||
|
||
generate: gen-kube gen-fakes | ||
build-helm: | ||
bin/build-helm | ||
|
||
vet: | ||
bin/vet | ||
############ TEST TARGETS ############ | ||
|
||
lint: | ||
bin/lint | ||
test: vet lint test-unit test-integration test-e2e | ||
|
||
test-unit: | ||
bin/test-unit | ||
|
||
test-integration: | ||
bin/test-integration | ||
|
||
test-integration-nobuild: build image-nobuild | ||
bin/test-integration | ||
|
||
test-e2e: | ||
bin/test-e2e | ||
|
||
test: vet lint test-unit test-integration test-e2e | ||
############ GENERATE TARGETS ############ | ||
|
||
tools: | ||
bin/tools | ||
generate: gen-kube gen-fakes | ||
|
||
check-scripts: | ||
bin/check-scripts | ||
gen-kube: | ||
bin/gen-kube | ||
|
||
coverage: | ||
bin/coverage | ||
gen-fakes: | ||
bin/gen-fakes | ||
|
||
gen-command-docs: | ||
go run cmd/gen-command-docs.go | ||
|
||
verify-gen-kube: | ||
bin/verify-gen-kube |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters