Skip to content

Commit d176b7f

Browse files
committed
dashboard: add linux-amd64-boringcrypto builder
As of CL 397895, GOEXPERIMENT=boringcrypto is understood on the master branch (and is a no-op). This CL adds a linux-amd64-boringcrypto builder in advance of merging actual boringcrypto code behind that GOEXPERIMENT flag. For golang/go#51940. Change-Id: I6611caf8f7a10f334e5343cadaf3b1c1e5bf4b2f Reviewed-on: https://go-review.googlesource.com/c/build/+/395815 Trust: Russ Cox <[email protected]> Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent 4c1179c commit d176b7f

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

dashboard/builders.go

+15
Original file line numberDiff line numberDiff line change
@@ -1598,6 +1598,21 @@ func init() {
15981598
numTestHelpers: 1,
15991599
numTryTestHelpers: 4,
16001600
})
1601+
addBuilder(BuildConfig{
1602+
Name: "linux-amd64-boringcrypto",
1603+
HostType: "host-linux-bullseye",
1604+
Notes: "GOEXPERIMENT=boringcrypto",
1605+
tryBot: defaultTrySet(),
1606+
env: []string{
1607+
"GOEXPERIMENT=boringcrypto",
1608+
"GO_DISABLE_OUTBOUND_NETWORK=1",
1609+
},
1610+
numTestHelpers: 1,
1611+
numTryTestHelpers: 4,
1612+
GoDeps: []string{
1613+
"5c4ed73f1c3f2052d8f60ce5ed45d9d4f9686331", // CL 397895, "internal/goexperiment: add GOEXPERIMENT=boringcrypto"
1614+
},
1615+
})
16011616
addBuilder(BuildConfig{
16021617
Name: "linux-amd64-vmx",
16031618
HostType: "host-linux-stretch-vmx",

dashboard/builders_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ func TestTrybots(t *testing.T) {
9797
"js-wasm",
9898
"linux-386",
9999
"linux-amd64",
100+
"linux-amd64-boringcrypto",
100101
"linux-amd64-race",
101102
"linux-amd64-unified",
102103
"linux-amd64-nounified",
@@ -132,6 +133,7 @@ func TestTrybots(t *testing.T) {
132133
"js-wasm",
133134
"linux-386",
134135
"linux-amd64",
136+
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
135137
"linux-amd64-race",
136138
"linux-amd64-unified",
137139
"linux-amd64-nounified",
@@ -167,6 +169,7 @@ func TestTrybots(t *testing.T) {
167169
"js-wasm",
168170
"linux-386",
169171
"linux-amd64",
172+
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
170173
"linux-amd64-race",
171174
"linux-arm-aws",
172175
"linux-arm64-aws",
@@ -205,6 +208,7 @@ func TestTrybots(t *testing.T) {
205208
"js-wasm",
206209
"linux-386",
207210
"linux-amd64",
211+
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
208212
"linux-amd64-race",
209213
"linux-arm-aws",
210214
"linux-arm64-aws",
@@ -251,6 +255,7 @@ func TestTrybots(t *testing.T) {
251255
"freebsd-amd64-13_0",
252256
"linux-386",
253257
"linux-amd64",
258+
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
254259
"linux-amd64-race",
255260
"linux-arm-aws",
256261
"linux-arm64-aws",

0 commit comments

Comments
 (0)