File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -383,6 +383,15 @@ CRD_SCHEMA_CHECKER_VERSION ?= release-4.16
383
383
384
384
PHONY : crd-schema-check
385
385
BRANCH ?= main
386
+ .PHONY : force-bump
387
+ force-bump : # # Force bump operator and lib-common dependencies
388
+ for dep in $$ (cat go.mod | grep openstack-k8s-operators | grep -vE -- ' indirect|mariadb-operator|^replace' | awk ' {print $$1}' ); do \
389
+ go get $$ dep@$(BRANCH ) ; \
390
+ done
391
+ for dep in $$ (cat api/go.mod | grep openstack-k8s-operators | grep -vE -- ' indirect|mariadb-operator|^replace' | awk ' {print $$1}' ); do \
392
+ cd ./api && go get $$ dep@$(BRANCH ) && cd .. ; \
393
+ done
394
+
386
395
crd-schema-check : manifests
387
396
INSTALL_DIR=$(LOCALBIN ) CRD_SCHEMA_CHECKER_VERSION=$(CRD_SCHEMA_CHECKER_VERSION ) hack/build-crd-schema-checker.sh
388
397
INSTALL_DIR=$(LOCALBIN ) BASE_REF=" $$ {PULL_BASE_SHA:-$( BRANCH) }" hack/crd-schema-checker.sh
You can’t perform that action at this time.
0 commit comments