https://github.com/kubeflow/katib
Raw File
Tip revision: 5ffff23c8cc5538b5eac3b5c2bc9038cfc860c25 authored by Achal on 21 May 2019, 16:30:34 UTC
Merge branch 'fix_merge_conflicts' of https://github.com/achalshant/katib into fix_merge_conflicts
Tip revision: 5ffff23
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