https://github.com/kubeflow/katib
Raw File
Tip revision: 33810ab8af398306a20a381024b80935fd850b09 authored by avelichk on 19 October 2020, 20:24:49 UTC
Trigger CI
Tip revision: 33810ab
Makefile
HAS_DEP := $(shell command -v dep;)
HAS_LINT := $(shell command -v golint;)

PREFIX ?= katib
CMD_PREFIX ?= cmd

# Run tests
.PHONY: test
test:
	go test ./pkg/... ./cmd/... -coverprofile coverage.out

depend:
ifndef HAS_DEP
	curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
endif
	dep ensure -v

check: depend generate fmt vet lint

fmt:
	hack/verify-gofmt.sh

lint:
ifndef HAS_LINT
	go get -u golang.org/x/lint/golint
	echo "installing golint"
endif
	hack/verify-golint.sh

vet:
	go vet ./pkg/... ./cmd/...

update:
	hack/update-gofmt.sh

# Deploy Katib v1alpha3 manifests into a k8s cluster
deployv1alpha3:
	bash scripts/v1alpha3/deploy.sh

# Deploy Katib v1beta1 manifests into a k8s cluster
deploy:
	bash scripts/v1beta1/deploy.sh

# Undeploy Katib v1alpha3 manifests from a k8s cluster
undeployv1alpha3:
	bash scripts/v1alpha3/undeploy.sh

# Undeploy Katib v1beta1 manifests from a k8s cluster
undeploy:
	bash scripts/v1beta1/undeploy.sh

# Generate deepcopy, clientset, listers, informers, open-api and python SDK for APIs.
# Run this if you update any existing controller APIs.
generate:
ifndef GOPATH
	$(error GOPATH not defined, please define GOPATH. Run "go help gopath" to learn more about GOPATH)
endif
	go generate ./pkg/... ./cmd/...
	hack/gen-python-sdk/gen-sdk.sh

# Build images for Katib v1alpha3 components
buildv1alpha3: depend generate
	bash scripts/v1alpha3/build.sh

# Build images for Katib v1beta1 components
build: depend generate
	bash scripts/v1beta1/build.sh

# Prettier UI format check for Katib v1alpha3
prettier-check-v1alpha3:
	npm run format:check --prefix pkg/ui/v1alpha3/frontend

# Prettier UI format check for Katib v1beta1
prettier-check:
	npm run format:check --prefix pkg/ui/v1beta1/frontend
back to top