2017-01-03 22:39:58 +00:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2017-01-03 22:40:41 +00:00
|
|
|
filegroup(
|
|
|
|
name = "package-srcs",
|
|
|
|
srcs = glob(["**"]),
|
|
|
|
tags = ["automanaged"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "all-srcs",
|
|
|
|
srcs = [
|
|
|
|
":package-srcs",
|
2018-07-05 13:04:56 +00:00
|
|
|
"//test/cmd:all-srcs",
|
2017-10-10 21:34:48 +00:00
|
|
|
"//test/conformance:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/e2e:all-srcs",
|
2018-04-30 14:00:13 +00:00
|
|
|
"//test/e2e_kubeadm:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/e2e_node:all-srcs",
|
|
|
|
"//test/fixtures:all-srcs",
|
|
|
|
"//test/images:all-srcs",
|
|
|
|
"//test/integration:all-srcs",
|
2017-01-13 22:47:06 +00:00
|
|
|
"//test/kubemark:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/list:all-srcs",
|
|
|
|
"//test/soak/serve_hostnames:all-srcs",
|
Add test/typecheck, a fast typecheck for all build platforms.
Most of the time spent compiling is spent optimizing and linking
binary code. Most errors occur at the syntax or semantic (type) layers.
Go's compiler is importable as a normal package, so we can do fast
syntax and type checking for the 10 platforms we build on.
This currently takes ~6 minutes of CPU time (parallelized).
This makes presubmit cross builds superfluous, since it should catch
most cross-build breaks (generally Unix and 64-bit assumptions).
Example output:
$ time go run test/typecheck/main.go
type-checking: linux/amd64, windows/386, darwin/amd64, linux/arm, linux/386, windows/amd64, linux/arm64, linux/ppc64le, linux/s390x, darwin/386
ERROR(windows/amd64) pkg/proxy/ipvs/proxier.go:1708:27: ENXIO not declared by package unix
ERROR(windows/386) pkg/proxy/ipvs/proxier.go:1708:27: ENXIO not declared by package unix
real 0m45.083s
user 6m15.504s
sys 1m14.000s
2018-02-02 22:27:52 +00:00
|
|
|
"//test/typecheck:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/utils:all-srcs",
|
|
|
|
],
|
|
|
|
tags = ["automanaged"],
|
|
|
|
)
|