Skip to content

Commit 4d0ec90

Browse files
committed
dashboard: add windows-arm builder
Updates golang/go#26148 Change-Id: I23a2c7bd1c2f8f7c960aaedfe0dcdee4e11825ab Reviewed-on: https://go-review.googlesource.com/125643 Reviewed-by: Andrew Bonventre <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 779c38b commit 4d0ec90

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

dashboard/builders.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,12 @@ var Hosts = map[string]*HostConfig{
267267
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/go1.4-windows-amd64.tar.gz",
268268
SSHUsername: "gopher",
269269
},
270+
"host-windows-arm-iotcore": &HostConfig{
271+
IsReverse: true,
272+
ExpectNum: 1,
273+
OwnerGithub: "jordanrh1",
274+
env: []string{"GOROOT_BOOTSTRAP=C:\\Data\\Go"},
275+
},
270276
"host-darwin-10_8": &HostConfig{
271277
IsReverse: true,
272278
ExpectNum: 0,
@@ -1321,6 +1327,14 @@ func init() {
13211327
// up:
13221328
"GO_TEST_TIMEOUT_SCALE=2"},
13231329
})
1330+
addBuilder(BuildConfig{
1331+
Name: "windows-arm",
1332+
HostType: "host-windows-arm-iotcore",
1333+
env: []string{
1334+
"GOARM=7",
1335+
"GO_TEST_TIMEOUT_SCALE=2",
1336+
},
1337+
})
13241338
addBuilder(BuildConfig{
13251339
Name: "darwin-amd64-10_8",
13261340
HostType: "host-darwin-10_8",

0 commit comments

Comments
 (0)