cert-manager/make/ci.mk
Ashley Davis ad998b35f8
Allow helm chart verification in both bazel + make
This slightly modifies our existing helm chart verification script to
accept the location of a tarball containing the chart we're verifying.

That in turn allows us to more generally use the script for both
validating the chart we build using make and the chart we build using
bazel.

Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2022-01-10 18:02:14 +00:00

11 lines
265 B
Makefile

.PHONY: ci-presubmit
ci-presubmit: verify-imports verify-chart
.PHONY: verify-imports
verify-imports: bin/tools/goimports
./hack/verify-goimports.sh $<
.PHONY: verify-chart
verify-chart: bin/cert-manager-$(RELEASE_VERSION).tgz
./hack/verify-chart-version.sh $<