You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
shell:
|
|
|
|
./hack/shell
|
|
|
|
|
|
|
|
binaries:
|
|
|
|
./hack/binaries
|
|
|
|
|
|
|
|
binaries-cross:
|
|
|
|
EXPORT_LOCAL=cross-out ./hack/cross
|
|
|
|
|
|
|
|
cross:
|
|
|
|
./hack/cross
|
|
|
|
|
|
|
|
install: binaries
|
|
|
|
mkdir -p ~/.docker/cli-plugins
|
|
|
|
install bin/buildx ~/.docker/cli-plugins/docker-buildx
|
|
|
|
|
|
|
|
lint:
|
|
|
|
./hack/lint
|
|
|
|
|
|
|
|
test:
|
|
|
|
./hack/test
|
|
|
|
|
|
|
|
validate-vendor:
|
|
|
|
./hack/validate-vendor
|
|
|
|
|
|
|
|
validate-docs:
|
|
|
|
./hack/validate-docs
|
|
|
|
|
|
|
|
validate-all: lint test validate-vendor validate-docs
|
|
|
|
|
|
|
|
vendor:
|
|
|
|
./hack/update-vendor
|
|
|
|
|
|
|
|
docs:
|
|
|
|
./hack/update-docs
|
|
|
|
|
|
|
|
generate-authors:
|
|
|
|
./hack/generate-authors
|
|
|
|
|
|
|
|
.PHONY: vendor lint shell binaries install binaries-cross validate-all generate-authors validate-docs docs
|