Skip to content

Commit

Permalink
Merge pull request #1568 from JoelSpeed/crd-schema-separate
Browse files Browse the repository at this point in the history
Split CRD schema check into separate Makefile target
  • Loading branch information
openshift-merge-robot authored Aug 25, 2023
2 parents f9d67cd + 392c8fd commit 938af62
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,18 @@ verify-scripts:
bash -x hack/verify-integration-tests.sh
bash -x hack/verify-group-versions.sh
bash -x hack/verify-prerelease-lifecycle-gen.sh
bash -x hack/verify-crd-schema-checker.sh

.PHONY: verify
verify: verify-scripts verify-codegen-crds
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 $*
Expand Down

0 comments on commit 938af62

Please sign in to comment.