2014-08-29 05:58:47 +00:00
|
|
|
# Old-skool build tools.
|
|
|
|
#
|
|
|
|
# Targets (see each target for more information):
|
|
|
|
# all: Build code.
|
|
|
|
# check: Run tests.
|
|
|
|
# test: Run tests.
|
|
|
|
# clean: Clean up.
|
|
|
|
|
|
|
|
OUT_DIR = _output
|
2014-09-10 19:06:46 +00:00
|
|
|
GODEPS_PKG_DIR = Godeps/_workspace/pkg
|
2014-08-29 05:58:47 +00:00
|
|
|
|
2014-10-22 23:26:59 +00:00
|
|
|
KUBE_GOFLAGS = $(GOFLAGS)
|
|
|
|
export KUBE_GOFLAGS
|
2014-08-29 05:58:47 +00:00
|
|
|
|
|
|
|
# Build code.
|
|
|
|
#
|
|
|
|
# Args:
|
|
|
|
# WHAT: Directory names to build. If any of these directories has a 'main'
|
|
|
|
# package, the build will produce executable files under $(OUT_DIR)/go/bin.
|
|
|
|
# If not specified, "everything" will be built.
|
|
|
|
# GOFLAGS: Extra flags to pass to 'go' when building.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# make
|
|
|
|
# make all
|
|
|
|
# make all WHAT=cmd/kubelet GOFLAGS=-v
|
|
|
|
all:
|
|
|
|
hack/build-go.sh $(WHAT)
|
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
# Build and run tests.
|
|
|
|
#
|
|
|
|
# Args:
|
|
|
|
# WHAT: Directory names to test. All *_test.go files under these
|
|
|
|
# directories will be run. If not specified, "everything" will be tested.
|
|
|
|
# TESTS: Same as WHAT.
|
|
|
|
# GOFLAGS: Extra flags to pass to 'go' when building.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# make check
|
|
|
|
# make test
|
|
|
|
# make check WHAT=pkg/kubelet GOFLAGS=-v
|
|
|
|
check test:
|
|
|
|
hack/test-go.sh $(WHAT) $(TESTS)
|
|
|
|
.PHONY: check test
|
|
|
|
|
2014-10-10 04:02:25 +00:00
|
|
|
# Build and run integration tests.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# make test_integration
|
2015-03-16 11:04:08 +00:00
|
|
|
test_integration:
|
2014-10-10 04:02:25 +00:00
|
|
|
hack/test-integration.sh
|
2014-10-22 23:26:59 +00:00
|
|
|
.PHONY: test_integration test_integ
|
2014-10-10 04:02:25 +00:00
|
|
|
|
|
|
|
# Build and run end-to-end tests.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# make test_e2e
|
|
|
|
test_e2e:
|
|
|
|
hack/e2e-test.sh
|
|
|
|
.PHONY: test_e2e
|
|
|
|
|
2014-08-29 05:58:47 +00:00
|
|
|
# Remove all build artifacts.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# make clean
|
|
|
|
clean:
|
2014-10-11 14:34:22 +00:00
|
|
|
build/make-clean.sh
|
2014-08-29 05:58:47 +00:00
|
|
|
rm -rf $(OUT_DIR)
|
2014-09-10 19:06:46 +00:00
|
|
|
rm -rf $(GODEPS_PKG_DIR)
|
2014-08-29 05:58:47 +00:00
|
|
|
.PHONY: clean
|
2014-10-07 20:44:40 +00:00
|
|
|
|
|
|
|
# Run 'go vet'.
|
|
|
|
#
|
|
|
|
# Args:
|
|
|
|
# WHAT: Directory names to vet. All *.go files under these
|
|
|
|
# directories will be vetted. If not specified, "everything" will be
|
|
|
|
# vetted.
|
|
|
|
# TESTS: Same as WHAT.
|
|
|
|
# GOFLAGS: Extra flags to pass to 'go' when building.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# make vet
|
|
|
|
# make vet WHAT=pkg/kubelet
|
|
|
|
vet:
|
|
|
|
hack/vet-go.sh $(WHAT) $(TESTS)
|
|
|
|
.PHONY: vet
|
2014-10-07 22:35:25 +00:00
|
|
|
|
|
|
|
# Build a release
|
|
|
|
#
|
|
|
|
# Example:
|
2014-10-11 14:34:22 +00:00
|
|
|
# make release
|
2014-10-07 22:35:25 +00:00
|
|
|
release:
|
|
|
|
build/release.sh
|
|
|
|
.PHONY: release
|
2014-10-21 19:27:53 +00:00
|
|
|
|
|
|
|
# Build a release, but skip tests
|
2014-10-22 23:26:59 +00:00
|
|
|
#
|
2014-10-21 19:27:53 +00:00
|
|
|
# Example:
|
|
|
|
# make release-skip-tests
|
2014-10-22 23:26:59 +00:00
|
|
|
release-skip-tests quick-release:
|
2014-10-21 19:27:53 +00:00
|
|
|
KUBE_RELEASE_RUN_TESTS=n build/release.sh
|
2014-10-22 23:26:59 +00:00
|
|
|
.PHONY: release-skip-tests quick-release
|
2014-10-21 19:27:53 +00:00
|
|
|
|