Skip to content

Commit

Permalink
dashboard: add linux-amd64-boringcrypto builder
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
rsc committed Apr 5, 2022
1 parent 4c1179c commit d176b7f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -1598,6 +1598,21 @@ func init() {
numTestHelpers: 1,
numTryTestHelpers: 4,
})
addBuilder(BuildConfig{
Name: "linux-amd64-boringcrypto",
HostType: "host-linux-bullseye",
Notes: "GOEXPERIMENT=boringcrypto",
tryBot: defaultTrySet(),
env: []string{
"GOEXPERIMENT=boringcrypto",
"GO_DISABLE_OUTBOUND_NETWORK=1",
},
numTestHelpers: 1,
numTryTestHelpers: 4,
GoDeps: []string{
"5c4ed73f1c3f2052d8f60ce5ed45d9d4f9686331", // CL 397895, "internal/goexperiment: add GOEXPERIMENT=boringcrypto"
},
})
addBuilder(BuildConfig{
Name: "linux-amd64-vmx",
HostType: "host-linux-stretch-vmx",
Expand Down
5 changes: 5 additions & 0 deletions dashboard/builders_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ func TestTrybots(t *testing.T) {
"js-wasm",
"linux-386",
"linux-amd64",
"linux-amd64-boringcrypto",
"linux-amd64-race",
"linux-amd64-unified",
"linux-amd64-nounified",
Expand Down Expand Up @@ -132,6 +133,7 @@ func TestTrybots(t *testing.T) {
"js-wasm",
"linux-386",
"linux-amd64",
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
"linux-amd64-race",
"linux-amd64-unified",
"linux-amd64-nounified",
Expand Down Expand Up @@ -167,6 +169,7 @@ func TestTrybots(t *testing.T) {
"js-wasm",
"linux-386",
"linux-amd64",
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
"linux-amd64-race",
"linux-arm-aws",
"linux-arm64-aws",
Expand Down Expand Up @@ -205,6 +208,7 @@ func TestTrybots(t *testing.T) {
"js-wasm",
"linux-386",
"linux-amd64",
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
"linux-amd64-race",
"linux-arm-aws",
"linux-arm64-aws",
Expand Down Expand Up @@ -251,6 +255,7 @@ func TestTrybots(t *testing.T) {
"freebsd-amd64-13_0",
"linux-386",
"linux-amd64",
"linux-amd64-boringcrypto", // GoDeps will exclude, but not in test
"linux-amd64-race",
"linux-arm-aws",
"linux-arm64-aws",
Expand Down

0 comments on commit d176b7f

Please sign in to comment.