@@ -307,6 +307,14 @@ var Hosts = map[string]*HostConfig{
307
307
goBootstrapURLTmpl : "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz" ,
308
308
SSHUsername : "gopher" ,
309
309
},
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
+ },
310
318
"host-freebsd-12_0" : & HostConfig {
311
319
VMImage : "freebsd-amd64-120-v1" ,
312
320
Notes : "FreeBSD 12.0; GCE VM is built from script in build/env/freebsd-amd64" ,
@@ -315,6 +323,14 @@ var Hosts = map[string]*HostConfig{
315
323
goBootstrapURLTmpl : "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz" ,
316
324
SSHUsername : "gopher" ,
317
325
},
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
+ },
318
334
"host-freebsd-12_0-big" : & HostConfig {
319
335
VMImage : "freebsd-amd64-120-v1" ,
320
336
Notes : "Same as host-freebsd-12_0, but on n1-highcpu-16" ,
@@ -1478,6 +1494,12 @@ func init() {
1478
1494
distTestAdjust : fasterTrybots ,
1479
1495
numTryTestHelpers : 4 ,
1480
1496
})
1497
+ addBuilder (BuildConfig {
1498
+ Name : "freebsd-amd64-11_4" ,
1499
+ HostType : "host-freebsd-11_4" ,
1500
+ numTryTestHelpers : 4 ,
1501
+ KnownIssue : 44431 ,
1502
+ })
1481
1503
addBuilder (BuildConfig {
1482
1504
Name : "freebsd-amd64-12_0" ,
1483
1505
HostType : "host-freebsd-12_0" ,
@@ -1487,13 +1509,26 @@ func init() {
1487
1509
distTestAdjust : fasterTrybots , // If changing this policy, update TestShouldRunDistTest accordingly.
1488
1510
numTryTestHelpers : 4 ,
1489
1511
})
1512
+ addBuilder (BuildConfig {
1513
+ Name : "freebsd-amd64-12_2" ,
1514
+ HostType : "host-freebsd-12_2" ,
1515
+ numTryTestHelpers : 4 ,
1516
+ KnownIssue : 44431 ,
1517
+ })
1490
1518
addBuilder (BuildConfig {
1491
1519
Name : "freebsd-386-12_0" ,
1492
1520
HostType : "host-freebsd-12_0" ,
1493
1521
env : []string {"GOARCH=386" , "GOHOSTARCH=386" },
1494
1522
distTestAdjust : fasterTrybots ,
1495
1523
numTryTestHelpers : 4 ,
1496
1524
})
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
+ })
1497
1532
addBuilder (BuildConfig {
1498
1533
Name : "freebsd-amd64-race" ,
1499
1534
HostType : "host-freebsd-12_0-big" ,
@@ -1505,6 +1540,13 @@ func init() {
1505
1540
tryBot : explicitTrySet ("sys" ),
1506
1541
env : []string {"GOARCH=386" , "GOHOSTARCH=386" },
1507
1542
})
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
+ })
1508
1550
addBuilder (BuildConfig {
1509
1551
Name : "linux-386" ,
1510
1552
HostType : "host-linux-jessie" ,
0 commit comments