@@ -50,6 +50,12 @@ var Hosts = map[string]*HostConfig{
50
50
Notes : "for localhost development of buildlets/gomote/coordinator only" ,
51
51
SSHUsername : os .Getenv ("USER" ),
52
52
},
53
+ "host-nacl-arm-davecheney" : & HostConfig {
54
+ IsReverse : true ,
55
+ ExpectNum : 1 ,
56
+ Notes : "Raspberry Pi 3" ,
57
+ OwnerGithub : "davecheney" ,
58
+ },
53
59
"host-nacl-kube" : & HostConfig {
54
60
Notes : "Kubernetes container on GKE." ,
55
61
KubeImage : "linux-x86-nacl:latest" ,
@@ -159,6 +165,17 @@ var Hosts = map[string]*HostConfig{
159
165
ReverseAliases : []string {"freebsd-arm-paulzhol" },
160
166
OwnerGithub : "paulzhol" ,
161
167
},
168
+ "host-plan9-arm-0intro" : & HostConfig {
169
+ IsReverse : true ,
170
+ ExpectNum : 1 ,
171
+ Notes : "Raspberry Pi 3 Model B, Plan 9 from Bell Labs" ,
172
+ OwnerGithub : "0intro" ,
173
+ },
174
+ "host-plan9-amd64-0intro" : & HostConfig {
175
+ IsReverse : true ,
176
+ ExpectNum : 1 ,
177
+ OwnerGithub : "0intro" ,
178
+ },
162
179
"host-plan9-386-gce" : & HostConfig {
163
180
VMImage : "plan9-386-v5" ,
164
181
Notes : "Plan 9 from 0intro; GCE VM is built from script in build/env/plan9-386" ,
@@ -1225,6 +1242,21 @@ func init() {
1225
1242
"CGO_ENABLED=1" ,
1226
1243
},
1227
1244
})
1245
+ addBuilder (BuildConfig {
1246
+ Name : "plan9-arm" ,
1247
+ HostType : "host-plan9-arm-0intro" ,
1248
+ SkipSnapshot : true ,
1249
+ })
1250
+ addBuilder (BuildConfig {
1251
+ Name : "nacl-arm" ,
1252
+ HostType : "host-nacl-arm-davecheney" ,
1253
+ SkipSnapshot : true ,
1254
+ })
1255
+ addBuilder (BuildConfig {
1256
+ Name : "plan9-amd64-9front" ,
1257
+ HostType : "host-plan9-amd64-0intro" ,
1258
+ SkipSnapshot : true ,
1259
+ })
1228
1260
1229
1261
}
1230
1262
@@ -1238,7 +1270,7 @@ func addBuilder(c BuildConfig) {
1238
1270
panic (fmt .Sprintf ("missing HostType for builder %q" , c .Name ))
1239
1271
}
1240
1272
if _ , dup := Builders [c .Name ]; dup {
1241
- panic ("dup name" )
1273
+ panic ("dup name " + c . Name )
1242
1274
}
1243
1275
if _ , ok := Hosts [c .HostType ]; ! ok {
1244
1276
panic (fmt .Sprintf ("undefined HostType %q for builder %q" , c .HostType , c .Name ))
0 commit comments