@@ -331,6 +331,16 @@ var Hosts = map[string]*HostConfig{
331
331
env : []string {"GOROOT_BOOTSTRAP=/usr/pkg/go112" },
332
332
OwnerGithub : "bsiegert" ,
333
333
},
334
+ // Our DragonFly builder doesn't yet run on GCE
335
+ // (golang.org/issue/23060), so @bradfitz currently runs the
336
+ // release version at home, and @tdfbsd runs one somewhere
337
+ // running the bleeding edge version.
338
+ "host-dragonfly-amd64-bradfitz" : & HostConfig {
339
+ IsReverse : true ,
340
+ ExpectNum : 1 ,
341
+ env : []string {"GOROOT_BOOTSTRAP=/usr/local/go" },
342
+ OwnerGithub : "bradfitz" ,
343
+ },
334
344
"host-dragonfly-amd64-tdfbsd" : & HostConfig {
335
345
IsReverse : true ,
336
346
ExpectNum : 1 ,
@@ -2214,9 +2224,15 @@ func init() {
2214
2224
// (https://golang.org/issue/32836)
2215
2225
return false
2216
2226
}
2217
- return defaultBuildsRepoPolicy (repo , branch , goBranch )
2227
+ return atLeastGo1 ( goBranch , 14 ) && defaultBuildsRepoPolicy (repo , branch , goBranch )
2218
2228
},
2219
2229
})
2230
+ addBuilder (BuildConfig {
2231
+ Name : "dragonfly-amd64-5_6" ,
2232
+ HostType : "host-dragonfly-amd64-bradfitz" ,
2233
+ shouldRunDistTest : noTestDir ,
2234
+ SkipSnapshot : true ,
2235
+ })
2220
2236
addBuilder (BuildConfig {
2221
2237
Name : "freebsd-arm-paulzhol" ,
2222
2238
HostType : "host-freebsd-arm-paulzhol" ,
0 commit comments