mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-09 10:47:35 +00:00
128 lines
3.7 KiB
Makefile
128 lines
3.7 KiB
Makefile
all: build
|
|
.PHONY: all
|
|
|
|
update: update-codegen-crds
|
|
|
|
RUNTIME ?= podman
|
|
RUNTIME_IMAGE_NAME ?= registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.20-openshift-4.14
|
|
|
|
EXCLUDE_DIRS := _output/ dependencymagnet/ hack/ third_party/ tls/ tools/ vendor/ tests/
|
|
GO_PACKAGES :=$(addsuffix ...,$(addprefix ./,$(filter-out $(EXCLUDE_DIRS), $(wildcard */))))
|
|
|
|
.PHONY: test-unit
|
|
test-unit:
|
|
go test -v $(GO_PACKAGES)
|
|
|
|
##################################################################################
|
|
#
|
|
# BEGIN: Update codegen-crds. Defaults to generating updates for all API packages.
|
|
# To run a subset of packages:
|
|
# - Filter by group with make update-codegen-crds-<group>
|
|
# E.g. make update-codegen-crds-machine
|
|
# - Set API_GROUP_VERSIONS to a space separated list of <group>/<version>.
|
|
# E.g. API_GROUP_VERSIONS="apps/v1 build/v1" make update-codegen-crds.
|
|
# FeatureSet generation is controlled at the group level by the
|
|
# .codegen.yaml file.
|
|
#
|
|
##################################################################################
|
|
|
|
# Ensure update-scripts are run before crd-gen so updates to Godoc are included in CRDs.
|
|
.PHONY: update-codegen-crds
|
|
update-codegen-crds: update-scripts
|
|
hack/update-codegen-crds.sh
|
|
|
|
#####################
|
|
#
|
|
# END: Update Codegen
|
|
#
|
|
#####################
|
|
|
|
.PHONY: verify-scripts
|
|
verify-scripts:
|
|
bash -x hack/verify-deepcopy.sh
|
|
bash -x hack/verify-openapi.sh
|
|
bash -x hack/verify-protobuf.sh
|
|
bash -x hack/verify-swagger-docs.sh
|
|
hack/verify-crds.sh
|
|
bash -x hack/verify-types.sh
|
|
bash -x hack/verify-compatibility.sh
|
|
bash -x hack/verify-integration-tests.sh
|
|
bash -x hack/verify-group-versions.sh
|
|
bash -x hack/verify-prerelease-lifecycle-gen.sh
|
|
|
|
.PHONY: verify
|
|
verify: verify-scripts verify-crd-schema verify-codegen-crds
|
|
|
|
.PHONY: verify-codegen-crds
|
|
verify-codegen-crds:
|
|
bash -x hack/verify-codegen-crds.sh
|
|
|
|
.PHONY: verify-crd-schema
|
|
verify-crd-schema:
|
|
bash -x hack/verify-crd-schema-checker.sh
|
|
|
|
.PHONY: verify-%
|
|
verify-%:
|
|
make $*
|
|
git diff --exit-code
|
|
|
|
################################################################################################
|
|
#
|
|
# BEGIN: Update scripts. Defaults to generating updates for all API packages.
|
|
# Set API_GROUP_VERSIONS to a space separated list of <group>/<version> to limit
|
|
# the scope of the updates. Eg API_GROUP_VERSIONS="apps/v1 build/v1" make update-scripts.
|
|
# Note: Protobuf generation is handled separately, see hack/lib/init.sh.
|
|
#
|
|
################################################################################################
|
|
|
|
.PHONY: update-scripts
|
|
update-scripts: update-compatibility update-openapi update-deepcopy update-protobuf update-swagger-docs tests-vendor update-prerelease-lifecycle-gen
|
|
|
|
.PHONY: update-compatibility
|
|
update-compatibility:
|
|
hack/update-compatibility.sh
|
|
|
|
.PHONY: update-openapi
|
|
update-openapi:
|
|
hack/update-openapi.sh
|
|
|
|
.PHONY: update-deepcopy
|
|
update-deepcopy:
|
|
hack/update-deepcopy.sh
|
|
|
|
.PHONY: update-protobuf
|
|
update-protobuf:
|
|
hack/update-protobuf.sh
|
|
|
|
.PHONY: update-swagger-docs
|
|
update-swagger-docs:
|
|
hack/update-swagger-docs.sh
|
|
|
|
.PHONY: update-prerelease-lifecycle-gen
|
|
update-prerelease-lifecycle-gen:
|
|
hack/update-prerelease-lifecycle-gen.sh
|
|
|
|
#####################
|
|
#
|
|
# END: Update scripts
|
|
#
|
|
#####################
|
|
|
|
deps:
|
|
go mod tidy
|
|
go mod vendor
|
|
go mod verify
|
|
|
|
verify-with-container:
|
|
$(RUNTIME) run -ti --rm -v $(PWD):/go/src/github.com/openshift/api:z -w /go/src/github.com/openshift/api $(RUNTIME_IMAGE_NAME) make verify
|
|
|
|
generate-with-container:
|
|
$(RUNTIME) run -ti --rm -v $(PWD):/go/src/github.com/openshift/api:z -w /go/src/github.com/openshift/api $(RUNTIME_IMAGE_NAME) make update
|
|
|
|
.PHONY: integration
|
|
integration:
|
|
make -C tests integration
|
|
|
|
tests-vendor:
|
|
make -C tests vendor
|