1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00
Files
source-to-image/Makefile
guangxuli 33697c7377 fix invalid test session
refix test target

move hack/verify-bash-completion.sh

use test target
2017-03-24 09:01:47 +08:00

88 lines
1.6 KiB
Makefile

# Old-skool build tools.
#
# Targets (see each target for more information):
# all: Build code.
# build: Build code.
# check: Run build, verify and tests.
# test: Run tests.
# clean: Clean up.
# release: Build release.
OUT_DIR = _output
export GOFLAGS
# Build code.
#
# Args:
# GOFLAGS: Extra flags to pass to 'go' when building.
#
# Example:
# make
# make all
all build:
hack/build-go.sh
.PHONY: all build
# Verify if code is properly organized.
#
# Example:
# make verify
verify: build
hack/verify-gofmt.sh
hack/verify-golint.sh
hack/verify-govet.sh
hack/verify-godeps.sh || true # remove this to make godepchecker's warnings actionable
hack/verify-bash-completion.sh
.PHONY: verify
# Install travis dependencies
#
# Example:
# make install-travis
install-travis:
hack/install-tools.sh
.PHONY: install-travis
# Build and run unit 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.
# TESTFLAGS: Extra flags that should only be passed to hack/test-go.sh
#
# Example:
# make check
# make test
# make check WHAT=pkg/docker TESTFLAGS=-v
check: verify test
.PHONY: check
# Run unit tests
# Example:
# make test
# make test WHAT=pkg/docker TESTFLAGS=-v
test:
hack/test-go.sh $(WHAT) $(TESTS) $(TESTFLAGS)
.PHONY: test
# Remove all build artifacts.
#
# Example:
# make clean
clean:
rm -rf $(OUT_DIR)
.PHONY: clean
# Build the release.
#
# Example:
# make release
release: clean
hack/build-release.sh
hack/extract-release.sh
.PHONY: release