-
Notifications
You must be signed in to change notification settings - Fork 18k
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/dashboard: many builders are configured with GO_DISABLE_OUTBOUND_NETWORK=1, but it has effect only on linux-386-stretch, linux-amd64-stretch #51444
Comments
Change https://go.dev/cl/389394 mentions this issue: |
One test case added in CL 388016 depends on production resources, specifically the snippet https://play.golang.org/p/MAohLsrz7JQ.go served by the production instance of the Go playground. This would be caught by TryBots where internet access is disabled, but that didn't happen due to golang/go#51444. Updates golang/go#51181. Fixes golang/go#51439. Change-Id: I4f1c5ea1a6ccad9ae4e5cbb749e3dee0b26731b5 Reviewed-on: https://go-review.googlesource.com/c/website/+/389394 Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Jamal Carvalho <jamalcarvalho@google.com> Trust: Dmitri Shuralyov <dmitshur@google.com>
Let's consider putting these in the trybot set for now. |
Change https://go.dev/cl/418778 mentions this issue: |
Change https://go.dev/cl/418777 mentions this issue: |
On a linux-amd64 gomote:
That's probably why it's not working on it: the iptables binary isn't available, yet that's how cmd/buildlet tries to disable the outbound network. It is available on linux-amd64-stretch:
|
It's changing as part of the move to GKE. Keep the old IP temporarily accessible while the DNS change gradually propagates. For golang/go#53889. Updates golang/go#51444. Change-Id: I324623c3b79d1b7af0dd2d8f3aea5acec4b849f7 Reviewed-on: https://go-review.googlesource.com/c/build/+/418777 Reviewed-by: Heschi Kreinick <heschi@google.com> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>
Change https://go.dev/cl/418792 mentions this issue: |
Change https://go.dev/cl/419079 mentions this issue: |
Change https://go.dev/cl/419174 mentions this issue: |
This change fixes various inconsistencies, and adds missing targets. Remove the gotip version override for building the riscv64 buildlet. It might've been necessary in the past, but it isn't by now. Remove OpenBSD 6.0-specific buildlets, they're long since obsolete. Updates golang/go#51444. Change-Id: I8b56511d092915a28e9ab7eba799472b37d9d411 Reviewed-on: https://go-review.googlesource.com/c/build/+/419079 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
Refactor tests that contact proxy.golang.org to use a local HTTP server instead. Fixes failures on builders with no outbound network. For golang/go#51444. Change-Id: I7d4e5a0b2dc4b1c0cddd12435e3656307bed4c70 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/419174 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Damien Neil <dneil@google.com> Reviewed-by: Jonathan Amsterdam <jba@google.com>
One test case added in CL 388016 depends on production resources, specifically the snippet https://play.golang.org/p/MAohLsrz7JQ.go served by the production instance of the Go playground. This would be caught by TryBots where internet access is disabled, but that didn't happen due to golang/go#51444. Updates golang/go#51181. Fixes golang/go#51439. Change-Id: I4f1c5ea1a6ccad9ae4e5cbb749e3dee0b26731b5 Reviewed-on: https://go-review.googlesource.com/c/website/+/389394 Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Jamal Carvalho <jamalcarvalho@google.com> Trust: Dmitri Shuralyov <dmitshur@google.com>
Issue #51439 demonstrates that
linux-386-stretch
,linux-amd64-stretch
builders correctly failed when internet access (to something other than https://proxy.golang.org and https://vcs-test.golang.org) was accidentally needed for a test to run, but many other Linux builders did not, despite their configuration including "GO_DISABLE_OUTBOUND_NETWORK=1".The buildlet binary is currently responsible for implementing the internet shut-off, perhaps something broke? Maybe by now we have a better way available to implement this?
CC @golang/release.
The text was updated successfully, but these errors were encountered: