File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -525,6 +525,15 @@ var Hosts = map[string]*HostConfig{
525
525
"GOROOT_BOOTSTRAP=/var/mobile/go-darwin-arm64-bootstrap" ,
526
526
},
527
527
},
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
+ },
528
537
"host-aix-ppc64-osuosl" : & HostConfig {
529
538
Notes : "AIX 7.2 VM on OSU; run by Tony Reix" ,
530
539
OwnerGithub : "trex58" ,
@@ -1944,6 +1953,14 @@ func init() {
1944
1953
return repo == "go" && branch == "master" && goBranch == "master"
1945
1954
},
1946
1955
})
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
+ })
1947
1964
addBuilder (BuildConfig {
1948
1965
Name : "darwin-amd64-wikofever" ,
1949
1966
HostType : "host-darwin-amd64-eliasnaur-android" ,
Original file line number Diff line number Diff line change @@ -368,8 +368,9 @@ func TestBuilderConfig(t *testing.T) {
368
368
{b ("android-arm64-wikofever" , "mobile" ), notBuilder },
369
369
{b ("android-arm64-wikofever" , "net" ), notBuilder },
370
370
371
- // Virtual iOS devices
371
+ // Virtual mobiledevices
372
372
{b ("darwin-arm64-corellium" , "go" ), isBuilder },
373
+ {b ("android-arm64-corellium" , "go" ), isBuilder },
373
374
374
375
// A GOOS=darwin variant of the physical ARM Androids
375
376
// runs x/mobile and nothing else:
You can’t perform that action at this time.
0 commit comments