Commit 0690573c authored by Joe Finney's avatar Joe Finney

Add //hack:verify-boilerplate rule.

parent 6e268e6f
...@@ -498,7 +498,7 @@ endef ...@@ -498,7 +498,7 @@ endef
@echo "$$BAZEL_TEST_HELP_INFO" @echo "$$BAZEL_TEST_HELP_INFO"
else else
bazel-test: bazel-test:
bazel test --test_output=errors //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/... bazel test --test_output=errors //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/... //hack:verify-all
endif endif
ifeq ($(PRINT_HELP),y) ifeq ($(PRINT_HELP),y)
......
...@@ -19,3 +19,18 @@ filegroup( ...@@ -19,3 +19,18 @@ filegroup(
], ],
tags = ["automanaged"], tags = ["automanaged"],
) )
sh_test(
name = "verify-boilerplate",
srcs = ["verify-boilerplate.sh"],
data = ["//:all-srcs"],
tags = ["manual"],
)
test_suite(
name = "verify-all",
tags = ["manual"],
tests = [
"verify-boilerplate",
],
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment