Skip to content

Commit 4c800c5

Browse files
committed
dashboard,env/freebsd: add 12.3-STABLE
With the XSAVE bug fix. For golang/go#49967, golang/go#46272. Change-Id: Ie0711ba83e4f15d26e6fe89e89c80b7c3ad2c23c Reviewed-on: https://go-review.googlesource.com/c/build/+/375695 Trust: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent cb27792 commit 4c800c5

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

dashboard/builders.go

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,14 @@ var Hosts = map[string]*HostConfig{
351351
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz",
352352
SSHUsername: "gopher",
353353
},
354+
"host-freebsd-12_3": &HostConfig{
355+
VMImage: "freebsd-amd64-123-stable-20211230",
356+
Notes: "FreeBSD 12.3; GCE VM is built from script in build/env/freebsd-amd64",
357+
machineType: "e2-highcpu-4",
358+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.freebsd-amd64",
359+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz",
360+
SSHUsername: "gopher",
361+
},
354362
"host-freebsd-13_0": &HostConfig{
355363
VMImage: "freebsd-amd64-130-stable-20211230",
356364
Notes: "FreeBSD 13.0; GCE VM is built from script in build/env/freebsd-amd64",
@@ -1574,13 +1582,28 @@ func init() {
15741582
distTestAdjust: fasterTrybots, // If changing this policy, update TestShouldRunDistTest accordingly.
15751583
numTryTestHelpers: 4,
15761584
})
1585+
addBuilder(BuildConfig{
1586+
Name: "freebsd-amd64-12_3",
1587+
HostType: "host-freebsd-12_3",
1588+
tryBot: defaultTrySet("sys"),
1589+
1590+
distTestAdjust: fasterTrybots, // If changing this policy, update TestShouldRunDistTest accordingly.
1591+
numTryTestHelpers: 4,
1592+
})
15771593
addBuilder(BuildConfig{
15781594
Name: "freebsd-386-12_2",
15791595
HostType: "host-freebsd-12_2",
15801596
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
15811597
distTestAdjust: fasterTrybots,
15821598
numTryTestHelpers: 4,
15831599
})
1600+
addBuilder(BuildConfig{
1601+
Name: "freebsd-386-12_3",
1602+
HostType: "host-freebsd-12_3",
1603+
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
1604+
distTestAdjust: fasterTrybots,
1605+
numTryTestHelpers: 4,
1606+
})
15841607
addBuilder(BuildConfig{
15851608
Name: "freebsd-amd64-race",
15861609
HostType: "host-freebsd-13_0-big",

dashboard/builders_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ func TestTrybots(t *testing.T) {
9393
want: []string{
9494
"android-amd64-emu",
9595
"freebsd-amd64-12_2",
96+
"freebsd-amd64-12_3",
9697
"js-wasm",
9798
"linux-386",
9899
"linux-amd64",
@@ -128,6 +129,7 @@ func TestTrybots(t *testing.T) {
128129
want: []string{
129130
"android-amd64-emu",
130131
"freebsd-amd64-12_2",
132+
"freebsd-amd64-12_3",
131133
"js-wasm",
132134
"linux-386",
133135
"linux-amd64",
@@ -163,6 +165,7 @@ func TestTrybots(t *testing.T) {
163165
want: []string{
164166
"android-amd64-emu",
165167
"freebsd-amd64-12_2",
168+
"freebsd-amd64-12_3",
166169
"js-wasm",
167170
"linux-386",
168171
"linux-amd64",
@@ -200,6 +203,7 @@ func TestTrybots(t *testing.T) {
200203
want: []string{
201204
"android-amd64-emu",
202205
"freebsd-amd64-12_2",
206+
"freebsd-amd64-12_3",
203207
"js-wasm",
204208
"linux-386",
205209
"linux-amd64",
@@ -247,6 +251,7 @@ func TestTrybots(t *testing.T) {
247251
"freebsd-386-13_0",
248252
"freebsd-amd64-11_4",
249253
"freebsd-amd64-12_2",
254+
"freebsd-amd64-12_3",
250255
"freebsd-amd64-13_0",
251256
"linux-386",
252257
"linux-amd64",

env/freebsd-amd64/make.bash

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ case $1 in
8080
readonly VERSION_TRAILER=
8181
readonly SHA256=0f8593382b6833658c6f6be532d4ffbedde7b75504452e27d912a0183f72ab56
8282
;;
83+
12.3-SNAPSHOT)
84+
readonly IS_SNAPSHOT=1
85+
readonly VERSION=12.3-STABLE
86+
readonly VERSION_TRAILER=
87+
readonly SHA256=e52ddb31b8f2ff7f8d03571b65e472cde3f92ef6b73ddaa5e7f5d4668ce4394c # https://lists.freebsd.org/archives/freebsd-snapshots/2021-December/000037.html
88+
;;
8389
13.0)
8490
readonly VERSION=13.0-RELEASE
8591
readonly VERSION_TRAILER=
@@ -89,7 +95,7 @@ case $1 in
8995
13.0-SNAPSHOT)
9096
readonly IS_SNAPSHOT=1
9197
readonly VERSION=13.0-STABLE
92-
readonly VERSION_TRAILER="-20211230-3684bb89d52-248759"
98+
readonly VERSION_TRAILER=
9399
readonly SHA256=7b8fcc2330c8d9f66dd012c5859167d56c227ece39188c8f55b2bddbf688875f # https://lists.freebsd.org/archives/freebsd-snapshots/2021-December/000036.html
94100
readonly BLIND_SWITCH_CONSOLE=1
95101
;;

0 commit comments

Comments
 (0)