-
Notifications
You must be signed in to change notification settings - Fork 487
Add scripts to verify generated codes and Go Modules #1999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
google-oss-prow
merged 1 commit into
kubeflow:master
from
tenzen-y:add-mockgen-to-makefile
Nov 30, 2022
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,14 @@ HAS_LINT := $(shell command -v golangci-lint;) | |
HAS_YAMLLINT := $(shell command -v yamllint;) | ||
HAS_SHELLCHECK := $(shell command -v shellcheck;) | ||
HAS_SETUP_ENVTEST := $(shell command -v setup-envtest;) | ||
HAS_MOCKGEN := $(shell command -v mockgen;) | ||
|
||
COMMIT := v1beta1-$(shell git rev-parse --short=7 HEAD) | ||
KATIB_REGISTRY := docker.io/kubeflowkatib | ||
CPU_ARCH ?= amd64 | ||
ENVTEST_K8S_VERSION ?= 1.25 | ||
MOCKGEN_VERSION ?= $(shell grep 'github.com/golang/mock' go.mod | cut -d ' ' -f 2) | ||
GO_VERSION=$(shell grep '^go' go.mod | cut -d ' ' -f 2) | ||
|
||
# for pytest | ||
PYTHONPATH := $(PYTHONPATH):$(CURDIR)/pkg/apis/manager/v1beta1/python:$(CURDIR)/pkg/apis/manager/health/python | ||
|
@@ -21,26 +24,26 @@ test: envtest | |
envtest: | ||
ifndef HAS_SETUP_ENVTEST | ||
go install sigs.k8s.io/controller-runtime/tools/setup-envtest@2c3a6fa2996c026b284c7fe2b055274cd9a556bc #v0.13.0 | ||
@echo "setup-envtest has been installed" | ||
$(info "setup-envtest has been installed") | ||
endif | ||
@echo "setup-envtest has already installed" | ||
$(info "setup-envtest has already installed") | ||
|
||
check: generate fmt vet lint | ||
check: generated-codes go-mod fmt vet lint | ||
|
||
fmt: | ||
hack/verify-gofmt.sh | ||
|
||
lint: | ||
ifndef HAS_LINT | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
@echo "golangci-lint has been installed" | ||
$(info "golangci-lint has been installed") | ||
endif | ||
hack/verify-golangci-lint.sh | ||
|
||
yamllint: | ||
ifndef HAS_YAMLLINT | ||
pip install yamllint | ||
@echo "yamllint has been installed" | ||
$(info "yamllint has been installed") | ||
endif | ||
hack/verify-yamllint.sh | ||
|
||
|
@@ -50,7 +53,7 @@ vet: | |
shellcheck: | ||
ifndef HAS_SHELLCHECK | ||
bash hack/install-shellcheck.sh | ||
@echo "shellcheck has been installed" | ||
$(info "shellcheck has been installed") | ||
endif | ||
hack/verify-shellcheck.sh | ||
|
||
|
@@ -65,19 +68,38 @@ deploy: | |
undeploy: | ||
bash scripts/v1beta1/undeploy.sh | ||
|
||
generated-codes: generate | ||
ifneq ($(shell bash hack/verify-generated-codes.sh '.'; echo $$?),0) | ||
$(error 'Please run "make generate" to generate codes') | ||
endif | ||
|
||
go-mod: sync-go-mod | ||
ifneq ($(shell bash hack/verify-generated-codes.sh 'go.*'; echo $$?),0) | ||
$(error 'Please run "go mod tidy -go $(GO_VERSION)" to sync Go modules') | ||
endif | ||
|
||
sync-go-mod: | ||
go mod tidy -go $(GO_VERSION) | ||
|
||
# Run this if you update any existing controller APIs. | ||
# 1. Genereate deepcopy, clientset, listers, informers for the APIs (hack/update-codegen.sh) | ||
# 1. Generate deepcopy, clientset, listers, informers for the APIs (hack/update-codegen.sh) | ||
# 2. Generate open-api for the APIs (hack/update-openapigen) | ||
# 3. Generate Python SDK for Katib (hack/gen-python-sdk/gen-sdk.sh) | ||
# 4. Generate gRPC manager APIs (pkg/apis/manager/v1beta1/build.sh and pkg/apis/manager/health/build.sh) | ||
# 5. Generate Go mock codes | ||
generate: | ||
ifndef GOPATH | ||
$(error GOPATH not defined, please define GOPATH. Run "go help gopath" to learn more about GOPATH) | ||
endif | ||
ifndef HAS_MOCKGEN | ||
go install github.com/golang/mock/mockgen@$(MOCKGEN_VERSION) | ||
$(info "mockgen has been installed") | ||
endif | ||
go generate ./pkg/... ./cmd/... | ||
hack/gen-python-sdk/gen-sdk.sh | ||
pkg/apis/manager/v1beta1/build.sh | ||
pkg/apis/manager/health/build.sh | ||
hack/update-mockgen.sh | ||
|
||
# Build images for the Katib v1beta1 components. | ||
build: generate | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2022 The Kubeflow Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
|
||
PATHS=( "${@}" ) | ||
cd "$(dirname "$0")/.." | ||
|
||
git diff --exit-code -- "${PATHS[@]}" > /dev/null |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.