diff --git a/dashboard/builders.go b/dashboard/builders.go index 0aec203337..c186817e25 100644 --- a/dashboard/builders.go +++ b/dashboard/builders.go @@ -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", diff --git a/dashboard/builders_test.go b/dashboard/builders_test.go index 69162880e9..aaeb8c9945 100644 --- a/dashboard/builders_test.go +++ b/dashboard/builders_test.go @@ -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", @@ -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", @@ -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", @@ -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", @@ -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",