File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
staging/operator-lifecycle-manager Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -153,8 +153,14 @@ image: clean build #HELP Build image image for linux on host architecture
153
153
# the e2e and experimental_metrics tags are required to get e2e tests to pass
154
154
# search the code for go:build e2e or go:build experimental_metrics to see where these tags are used
155
155
e2e-build : export GO_BUILD_TAGS += e2e experimental_metrics # HELP Build image for e2e testing
156
- e2e-build : IMAGE_TAG = local
157
- e2e-build : image
156
+ e2e-build : local-build
157
+
158
+ .PHONY : local-build
159
+ local-build : IMAGE_TAG = local
160
+ local-build : image
161
+
162
+ .PHONY : run-local
163
+ run-local : local-build kind-create deploy
158
164
159
165
.PHONY : clean
160
166
clean : # HELP Clean up build artifacts
You can’t perform that action at this time.
0 commit comments