Skip to content

Commit 302a384

Browse files
committed
env/linux-x86-buster, dashboard: add netbase package to the host
This change adds the netbase package to the host. The netbase package includes several components necessary for TCP/IP based networking. Network related unit tests were failing on builders using this host without this package. Fixes golang/go#42750 Change-Id: Id98d46efac4fe98ecf475035218be181c3d8dec0 Reviewed-on: https://go-review.googlesource.com/c/build/+/272486 Trust: Carlos Amedee <[email protected]> Run-TryBot: Carlos Amedee <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent 81f4b09 commit 302a384

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dashboard/builders.go

-1
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,6 @@ func init() {
17891789
env: []string{
17901790
"GO_DISABLE_OUTBOUND_NETWORK=1",
17911791
},
1792-
KnownIssue: 42750,
17931792
})
17941793
addBuilder(BuildConfig{
17951794
Name: "linux-amd64-longtest",

env/linux-x86-buster/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ ENV DEBIAN_FRONTEND noninteractive
1616
# libc6-dev-i386 gcc-multilib: for 32-bit builds
1717
# procps lsof psmisc: misc basic tools
1818
# libgles2-mesa-dev libopenal-dev fonts-droid-fallback: required by x/mobile repo
19+
# netbase: for net package tests, issue 42750
1920
RUN apt-get update && apt-get install -y \
2021
--no-install-recommends \
2122
ca-certificates \
23+
netbase \
2224
curl \
2325
gdb \
2426
strace \

0 commit comments

Comments
 (0)