swh:1:snp:e77894886b450c6109aac4a3cdd519d6ed38b51f
Raw File
Tip revision: 63cbfe9631df938a285b5a7a822bee3ad4a49f55 authored by Yuan (Terry) Tang on 24 April 2019, 18:51:28 UTC
Remove outdated TODOs in README.md
Tip revision: 63cbfe9
Makefile
# Run tests
test:
	go test ./pkg/... ./cmd/...

# Build Katib images
build: 
	sh scripts/v1alpha1/build.sh

# Deploy katib manifests into a k8s cluster
deploy: 
	sh scripts/v1alpha1/deploy.sh

# Run go fmt against code
fmt:
	go fmt ./pkg/... ./cmd/...

# Run go vet against code
vet:
	go vet ./pkg/... ./cmd/...

# Generate code
generate:
ifndef GOPATH
	$(error GOPATH not defined, please define GOPATH. Run "go help gopath" to learn more about GOPATH)
endif
	go generate ./pkg/... ./cmd/...
back to top