Skip to content

Commit 8050efc

Browse files
committed
dashboard: add amd64 FreeBSD 11.4 and 12.2 builders
This change adds builders for amd64 FreeBSD 11.4 and 12.2. These builders are labeled with a known issue until they have been tested. They will not be used in trybots until the known issue label has been removed. Updates golang/go#44431 Change-Id: I902f2f6bd887135bf247feb1be0e0fd49f732614 Reviewed-on: https://go-review.googlesource.com/c/build/+/311869 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 64e6bcd commit 8050efc

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

dashboard/builders.go

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,14 @@ var Hosts = map[string]*HostConfig{
307307
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz",
308308
SSHUsername: "gopher",
309309
},
310+
"host-freebsd-11_4": &HostConfig{
311+
VMImage: "freebsd-amd64-114",
312+
Notes: "FreeBSD 11.4; GCE VM is built from script in build/env/freebsd-amd64",
313+
machineType: "n1-highcpu-4",
314+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.freebsd-amd64",
315+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz",
316+
SSHUsername: "gopher",
317+
},
310318
"host-freebsd-12_0": &HostConfig{
311319
VMImage: "freebsd-amd64-120-v1",
312320
Notes: "FreeBSD 12.0; GCE VM is built from script in build/env/freebsd-amd64",
@@ -315,6 +323,14 @@ var Hosts = map[string]*HostConfig{
315323
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz",
316324
SSHUsername: "gopher",
317325
},
326+
"host-freebsd-12_2": &HostConfig{
327+
VMImage: "freebsd-amd64-122",
328+
Notes: "FreeBSD 12.2; GCE VM is built from script in build/env/freebsd-amd64",
329+
machineType: "n1-highcpu-4",
330+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.freebsd-amd64",
331+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz",
332+
SSHUsername: "gopher",
333+
},
318334
"host-freebsd-12_0-big": &HostConfig{
319335
VMImage: "freebsd-amd64-120-v1",
320336
Notes: "Same as host-freebsd-12_0, but on n1-highcpu-16",
@@ -1478,6 +1494,12 @@ func init() {
14781494
distTestAdjust: fasterTrybots,
14791495
numTryTestHelpers: 4,
14801496
})
1497+
addBuilder(BuildConfig{
1498+
Name: "freebsd-amd64-11_4",
1499+
HostType: "host-freebsd-11_4",
1500+
numTryTestHelpers: 4,
1501+
KnownIssue: 44431,
1502+
})
14811503
addBuilder(BuildConfig{
14821504
Name: "freebsd-amd64-12_0",
14831505
HostType: "host-freebsd-12_0",
@@ -1487,13 +1509,26 @@ func init() {
14871509
distTestAdjust: fasterTrybots, // If changing this policy, update TestShouldRunDistTest accordingly.
14881510
numTryTestHelpers: 4,
14891511
})
1512+
addBuilder(BuildConfig{
1513+
Name: "freebsd-amd64-12_2",
1514+
HostType: "host-freebsd-12_2",
1515+
numTryTestHelpers: 4,
1516+
KnownIssue: 44431,
1517+
})
14901518
addBuilder(BuildConfig{
14911519
Name: "freebsd-386-12_0",
14921520
HostType: "host-freebsd-12_0",
14931521
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
14941522
distTestAdjust: fasterTrybots,
14951523
numTryTestHelpers: 4,
14961524
})
1525+
addBuilder(BuildConfig{
1526+
Name: "freebsd-386-12_2",
1527+
HostType: "host-freebsd-12_2",
1528+
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
1529+
numTryTestHelpers: 4,
1530+
KnownIssue: 44431,
1531+
})
14971532
addBuilder(BuildConfig{
14981533
Name: "freebsd-amd64-race",
14991534
HostType: "host-freebsd-12_0-big",
@@ -1505,6 +1540,13 @@ func init() {
15051540
tryBot: explicitTrySet("sys"),
15061541
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
15071542
})
1543+
addBuilder(BuildConfig{
1544+
Name: "freebsd-386-11_4",
1545+
HostType: "host-freebsd-11_4",
1546+
distTestAdjust: noTestDirAndNoReboot,
1547+
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
1548+
KnownIssue: 44431,
1549+
})
15081550
addBuilder(BuildConfig{
15091551
Name: "linux-386",
15101552
HostType: "host-linux-jessie",

0 commit comments

Comments
 (0)