Skip to content

Commit 7ae7539

Browse files
eliasnaurbradfitz
authored andcommitted
dashboard: add android/arm builder on Corellium
Updates golang/go#31722 Change-Id: I07d9f85d47b6cda5eadcfc4f93adff42316f0ff5 Reviewed-on: https://go-review.googlesource.com/c/build/+/174857 TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 4d0f77a commit 7ae7539

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

dashboard/builders.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1961,6 +1961,19 @@ func init() {
19611961
return repo == "go" && branch == "master" && goBranch == "master"
19621962
},
19631963
})
1964+
addBuilder(BuildConfig{
1965+
Name: "android-arm-corellium",
1966+
HostType: "host-android-arm64-corellium-android",
1967+
Notes: "Virtual Android running on Corellium; owned by zenly",
1968+
buildsRepo: func(repo, branch, goBranch string) bool {
1969+
return repo == "go" && branch == "master" && goBranch == "master"
1970+
},
1971+
env: []string{
1972+
"CGO_ENABLED=1",
1973+
"GOHOSTARCH=arm",
1974+
"GOARCH=arm",
1975+
},
1976+
})
19641977
addBuilder(BuildConfig{
19651978
Name: "darwin-amd64-wikofever",
19661979
HostType: "host-darwin-amd64-eliasnaur-android",

dashboard/builders_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ func TestBuilderConfig(t *testing.T) {
371371
// Virtual mobiledevices
372372
{b("darwin-arm64-corellium", "go"), isBuilder},
373373
{b("android-arm64-corellium", "go"), isBuilder},
374+
{b("android-arm-corellium", "go"), isBuilder},
374375

375376
// A GOOS=darwin variant of the physical ARM Androids
376377
// runs x/mobile and nothing else:

0 commit comments

Comments
 (0)