-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/build/app: dashboard should not hide missing builders #19930
Comments
Speaking of missing builders, mips and mips64 are also missing.
Then there's this line in coordinator's awaitTryBuild():
@bradfitz Does this make sense, are mips and mips64 builder timing out? cc @MIPSbkirby |
@vstefanovic, the 10 minute timer you found (in awaitTryBuilt) is about trybots (pre-submit builds), which we don't run against MIPS machines, since they're too slow. I'm not aware of any other time limit in the build coordinator. I see a mips64 build running now. (temporary URL: https://farmer.golang.org/temporarylogs?name=linux-mips64&rev=9191c0b3fdd7b129007fab66f9034d595abb3876&st=0xc4215b0e00&nostream=1) The logs at the top say:
It's setting GO_TEST_TIMEOUT_SCALE=4, which is already cranking up limits. But if it violates those limits and fails, it should report a failure to the build dashboard. If it disappears from the build dashboard, that implies the machine is somehow dropping off the network or not reporting anything. |
Does make.bash really take 13+ minutes and counting on mips64? Or is other stuff happening on that machine slowing it down? Is it swapping? |
Moved mips64 discussion to #19953 |
/cc @andybons |
Change https://golang.org/cl/170443 mentions this issue: |
build.golang.org should know what builders it expects results from and not hide columns with no results. This makes it look like we don't have builders - or that all builders are OK - when in fact a builder is missing. This made #19929 (linux/arm64 builder not reporting results) look like we don't have one at all.
The text was updated successfully, but these errors were encountered: