• Kubernetes Submit Queue's avatar
    Merge pull request #59289 from rmmh/semantic-check · aa13f3fa
    Kubernetes Submit Queue authored
    Automatic merge from submit-queue (batch tested with PRs 53689, 56880, 55856, 59289, 60249). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.
    
     Add test/typecheck, a fast typecheck for all build platforms.
    
    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
    ```
    
    
    ```release-note
    NONE
    ```
    aa13f3fa
Name
Last commit
Last update
..
bootstrap Loading commit data...
certificates Loading commit data...
cloud Loading commit data...
clusterroleaggregation Loading commit data...
cronjob Loading commit data...
daemon Loading commit data...
deployment Loading commit data...
disruption Loading commit data...
endpoint Loading commit data...
garbagecollector Loading commit data...
history Loading commit data...
job Loading commit data...
namespace Loading commit data...
nodeipam Loading commit data...
nodelifecycle Loading commit data...
podautoscaler Loading commit data...
podgc Loading commit data...
replicaset Loading commit data...
replication Loading commit data...
resourcequota Loading commit data...
route Loading commit data...
service Loading commit data...
serviceaccount Loading commit data...
statefulset Loading commit data...
testutil Loading commit data...
ttl Loading commit data...
util/node Loading commit data...
volume Loading commit data...
.import-restrictions Loading commit data...
BUILD Loading commit data...
OWNERS Loading commit data...
client_builder.go Loading commit data...
controller_ref_manager.go Loading commit data...
controller_ref_manager_test.go Loading commit data...
controller_utils.go Loading commit data...
controller_utils_test.go Loading commit data...
doc.go Loading commit data...
lookup_cache.go Loading commit data...