-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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: update arm64 builders from jessie to stretch #34905
Comments
I just went to file this same bug. Thanks! |
FYI, I'm using Ubuntu |
We're just docker. It's the container that's Jessie. Probably a one line upgrade. |
Change https://golang.org/cl/201080 mentions this issue: |
Change https://golang.org/cl/201459 mentions this issue: |
The /etc/services file used to be elsewhere in Jessie. When we upgraded to Buster we lost it and now need the netbase package. We've had to do this for other builders we upgraded from Jessie but I forgot. Updates golang/go#34905 Change-Id: I24c4271839cc2c4a9556f88d7347b031bd3a29bb Reviewed-on: https://go-review.googlesource.com/c/build/+/201459 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
Fixes golang/go#34905 Change-Id: Ib467d31b158b5ad3f4f993959fdf1a25ac91b8b1 Reviewed-on: https://go-review.googlesource.com/c/build/+/201080 Reviewed-by: Keith Randall <khr@golang.org>
The /etc/services file used to be elsewhere in Jessie. When we upgraded to Buster we lost it and now need the netbase package. We've had to do this for other builders we upgraded from Jessie but I forgot. Updates golang/go#34905 Change-Id: I24c4271839cc2c4a9556f88d7347b031bd3a29bb Reviewed-on: https://go-review.googlesource.com/c/build/+/201459 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
We're currently running the jessie version of Debian on the arm64 trybots.
It looks like jessie is not supported on arm64. If I run
apt-get update
on a builder, I get an error like:There is indeed no such entry in that file.
arm64
doesn't appear anywhere in it (nor doesaarch64
).In contrast, replace
jessie
withstretch
in that URL, and you do seearm64
support.This page claims arm64 support, but I'm not sure it is correct given my troubles.
I don't know where we got this jessie version that does run on arm64. But since
apt-get
doesn't work, it's hard to load any new software onto the builders (I'm trying to rebuild the race detector, for which I needgit
andg++
loaded).@bradfitz @mengzhuo
The text was updated successfully, but these errors were encountered: