Skip to content

Commit 3e74d52

Browse files
committed
dashboard, cmd/release: use Jessie for release builds
Drop linux-amd64-stretch (which is redundant with linux-amd64, which is now Stretch since CL 170282) and add linux-amd64-jessie, and use Jessie in cmd/release for Linux releases) Updates golang/go#31293 Change-Id: I21b7a43a24385d5976296d0e5f1c6009cbc18b05 Reviewed-on: https://go-review.googlesource.com/c/build/+/171121 Reviewed-by: Andrew Bonventre <[email protected]>
1 parent 00823ba commit 3e74d52

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cmd/release/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func (b *Build) logf(format string, args ...interface{}) {
164164
var builds = []*Build{
165165
{
166166
Source: true,
167-
Builder: "linux-amd64",
167+
Builder: "linux-amd64-jessie", // using Jessie for at least [Go 1.11, Go 1.13] due to golang.org/issue/31336
168168
},
169169
{
170170
OS: "linux",

dashboard/builders.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1540,10 +1540,10 @@ func init() {
15401540
Notes: "Runs GOOS=linux but with the Android emulator attached, for running x/mobile host tests.",
15411541
})
15421542
addBuilder(BuildConfig{
1543-
Name: "linux-amd64-stretch",
1544-
HostType: "host-linux-stretch",
1545-
MaxAtOnce: 1,
1546-
Notes: "Debian Stretch",
1543+
Name: "linux-amd64-jessie",
1544+
HostType: "host-linux-jessie",
1545+
MaxAtOnce: 5,
1546+
Notes: "Debian Jessie. The normal 'linux-amd64' builder is stretch. We use Jessie for our release builds due to https://golang.org/issue/31293",
15471547
env: []string{
15481548
"GO_DISABLE_OUTBOUND_NETWORK=1",
15491549
},

0 commit comments

Comments
 (0)