swh:1:snp:538c7cebc7e022850b50be118dc4861478270e91
Raw File
Tip revision: 7124ce6b80297c6c546e283db7fdbbff47ec6cd6 authored by hougang liu on 09 May 2019, 04:15:13 UTC
fix test error
Tip revision: 7124ce6
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