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>
11 lines
265 B
Makefile
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 $<
|