@@ -93,6 +93,14 @@ var Hosts = map[string]*HostConfig{
93
93
goBootstrapURLTmpl : "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz" ,
94
94
env : []string {"CC=clang" },
95
95
},
96
+ "host-freebsd-110" : & HostConfig {
97
+ VMImage : "freebsd-amd64-110" ,
98
+ Notes : "FreeBSD 11.0; GCE VM is built from script in build/env/freebsd-amd64" ,
99
+ machineType : "n1-highcpu-4" ,
100
+ buildletURLTmpl : "http://storage.googleapis.com/$BUCKET/buildlet.freebsd-amd64" , // TODO(bradfitz): why was this http instead of https?
101
+ goBootstrapURLTmpl : "https://storage.googleapis.com/$BUCKET/go1.4-freebsd-amd64.tar.gz" ,
102
+ env : []string {"CC=clang" },
103
+ },
96
104
"host-netbsd-70" : & HostConfig {
97
105
VMImage : "netbsd-amd64-70" ,
98
106
Notes : "NetBSD 7.0_2016Q4; GCE VM is built from script in build/env/netbsd-amd64" ,
@@ -497,6 +505,7 @@ func (c *BuildConfig) BuildSubrepos() bool {
497
505
"darwin-amd64-10_11" ,
498
506
"darwin-386-10_11" ,
499
507
"freebsd-386-gce101" , "freebsd-amd64-gce101" ,
508
+ "freebsd-386-110" , "freebsd-amd64-110" ,
500
509
"linux-386" , "linux-amd64" , "linux-amd64-nocgo" ,
501
510
"openbsd-386-60" , "openbsd-amd64-60" ,
502
511
"plan9-386" ,
@@ -618,25 +627,33 @@ func (c *BuildConfig) NumTestHelpers(isTry bool) int {
618
627
619
628
func init () {
620
629
addBuilder (BuildConfig {
621
- Name : "freebsd-amd64-gce93" ,
622
- HostType : "host-freebsd-93-gce" ,
623
- numTestHelpers : 1 ,
630
+ Name : "freebsd-amd64-gce93" ,
631
+ HostType : "host-freebsd-93-gce" ,
624
632
})
625
633
addBuilder (BuildConfig {
626
634
Name : "freebsd-amd64-gce101" ,
627
635
HostType : "host-freebsd-101-gce" ,
628
636
numTestHelpers : 2 ,
629
637
numTryTestHelpers : 4 ,
630
638
})
639
+ addBuilder (BuildConfig {
640
+ Name : "freebsd-amd64-110" ,
641
+ HostType : "host-freebsd-110" ,
642
+ })
631
643
addBuilder (BuildConfig {
632
644
Name : "freebsd-amd64-race" ,
633
- HostType : "host-freebsd-101-gce" ,
645
+ HostType : "host-freebsd-101-gce" , // TODO(bradfitz): switch to FreeBSD 11? test first.
634
646
})
635
647
addBuilder (BuildConfig {
636
648
Name : "freebsd-386-gce101" ,
637
649
HostType : "host-freebsd-101-gce" ,
638
650
env : []string {"GOARCH=386" , "GOHOSTARCH=386" },
639
651
})
652
+ addBuilder (BuildConfig {
653
+ Name : "freebsd-386-110" ,
654
+ HostType : "host-freebsd-110" ,
655
+ env : []string {"GOARCH=386" , "GOHOSTARCH=386" },
656
+ })
640
657
addBuilder (BuildConfig {
641
658
Name : "linux-386" ,
642
659
HostType : "host-linux-kubestd" ,
0 commit comments