Skip to content

Commit 938af62

Browse files
Merge pull request #1568 from JoelSpeed/crd-schema-separate
Split CRD schema check into separate Makefile target
2 parents f9d67cd + 392c8fd commit 938af62

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,18 @@ verify-scripts:
4949
bash -x hack/verify-integration-tests.sh
5050
bash -x hack/verify-group-versions.sh
5151
bash -x hack/verify-prerelease-lifecycle-gen.sh
52-
bash -x hack/verify-crd-schema-checker.sh
5352

5453
.PHONY: verify
55-
verify: verify-scripts verify-codegen-crds
54+
verify: verify-scripts verify-crd-schema verify-codegen-crds
5655

5756
.PHONY: verify-codegen-crds
5857
verify-codegen-crds:
5958
bash -x hack/verify-codegen-crds.sh
6059

60+
.PHONY: verify-crd-schema
61+
verify-crd-schema:
62+
bash -x hack/verify-crd-schema-checker.sh
63+
6164
.PHONY: verify-%
6265
verify-%:
6366
make $*

0 commit comments

Comments
 (0)