Skip to content

Commit 4d0f77a

Browse files
eliasnaurbradfitz
authored andcommitted
dashboard: add Zenly's virtual Android builders
Change-Id: Id0be99f343a819c19b0004dc4160175c9bb0ace9 Reviewed-on: https://go-review.googlesource.com/c/build/+/174798 Run-TryBot: Elias Naur <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 6bebc8e commit 4d0f77a

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

dashboard/builders.go

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,15 @@ var Hosts = map[string]*HostConfig{
525525
"GOROOT_BOOTSTRAP=/var/mobile/go-darwin-arm64-bootstrap",
526526
},
527527
},
528+
"host-android-arm64-corellium-android": &HostConfig{
529+
Notes: "Virtual Android devices hosted by Zenly on Corellium",
530+
OwnerGithub: "znly",
531+
IsReverse: true,
532+
ExpectNum: 3,
533+
env: []string{
534+
"GOROOT_BOOTSTRAP=/data/data/com.termux/files/home/go-android-arm64-bootstrap",
535+
},
536+
},
528537
"host-aix-ppc64-osuosl": &HostConfig{
529538
Notes: "AIX 7.2 VM on OSU; run by Tony Reix",
530539
OwnerGithub: "trex58",
@@ -1944,6 +1953,14 @@ func init() {
19441953
return repo == "go" && branch == "master" && goBranch == "master"
19451954
},
19461955
})
1956+
addBuilder(BuildConfig{
1957+
Name: "android-arm64-corellium",
1958+
HostType: "host-android-arm64-corellium-android",
1959+
Notes: "Virtual Android running on Corellium; owned by zenly",
1960+
buildsRepo: func(repo, branch, goBranch string) bool {
1961+
return repo == "go" && branch == "master" && goBranch == "master"
1962+
},
1963+
})
19471964
addBuilder(BuildConfig{
19481965
Name: "darwin-amd64-wikofever",
19491966
HostType: "host-darwin-amd64-eliasnaur-android",

dashboard/builders_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,9 @@ func TestBuilderConfig(t *testing.T) {
368368
{b("android-arm64-wikofever", "mobile"), notBuilder},
369369
{b("android-arm64-wikofever", "net"), notBuilder},
370370

371-
// Virtual iOS devices
371+
// Virtual mobiledevices
372372
{b("darwin-arm64-corellium", "go"), isBuilder},
373+
{b("android-arm64-corellium", "go"), isBuilder},
373374

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

0 commit comments

Comments
 (0)