We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
verify-manifests
1 parent b5c259e commit 780b74bCopy full SHA for 780b74b
Makefile
@@ -158,7 +158,18 @@ container-mockgen:
158
verify-codegen: codegen
159
git diff --exit-code
160
161
-verify-catalog:
+# this is here for backwards compatibility with the ci job that calls verify-catalog
162
+verify-catalog: verify-manifests
163
+
164
+verify-manifests: ver=$(shell cat OLM_VERSION)
165
+verify-manifests:
166
+ rm -rf manifests
167
+ mkdir manifests
168
+ ./scripts/package_release.sh $(ver) manifests deploy/ocp/values.yaml
169
+ # requires gnu sed if on mac
170
+ find ./manifests -type f -exec sed -i "/^#/d" {} \;
171
+ find ./manifests -type f -exec sed -i "1{/---/d}" {} \;
172
+ git diff --exit-code
173
174
mockgen:
175
$(MOCKGEN)
0 commit comments