mirror of https://github.com/k3s-io/k3s
Don't build //build/... with "make bazel-build".
This makes "make bazel-build" no longer build docker images and release tars, which are the slowest and least incremental parts. They will still be built in CI since we run //:ci-artifacts.pull/6/head
parent
90b5d4cbd8
commit
f73254826d
4
Makefile
4
Makefile
|
@ -483,7 +483,7 @@ bazel-build:
|
|||
@echo "$$BAZEL_BUILD_HELP_INFO"
|
||||
else
|
||||
bazel-build:
|
||||
bazel build //cmd/... //pkg/... //federation/... //plugin/... //build/... //examples/... //test/... //third_party/...
|
||||
bazel build //cmd/... //pkg/... //federation/... //plugin/... //third_party/... //examples/... //test/...
|
||||
endif
|
||||
|
||||
|
||||
|
@ -498,7 +498,7 @@ endef
|
|||
@echo "$$BAZEL_TEST_HELP_INFO"
|
||||
else
|
||||
bazel-test:
|
||||
bazel test //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/... //hack:verify-all
|
||||
bazel test //cmd/... //pkg/... //federation/... //plugin/... //third_party/... //hack/... //hack:verify-all
|
||||
endif
|
||||
|
||||
ifeq ($(PRINT_HELP),y)
|
||||
|
|
Loading…
Reference in New Issue