https://github.com/kubeflow/katib
Raw File
Tip revision: 4d3c0bc4e5ee25e3f76cb75658b5954724afc8c4 authored by Achal Shantharam on 21 May 2019, 21:38:31 UTC
Resolving dbif reference and expectExec
Tip revision: 4d3c0bc
Makefile
# Run tests
.PHONY: test
test:
	go test ./pkg/... ./cmd/... -coverprofile coverage.out

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

# Deploy katib manifests into a k8s cluster
deploy: 
	bash 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