File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -516,6 +516,15 @@ var Hosts = map[string]*HostConfig{
516
516
"GOHOSTARCH=amd64" ,
517
517
},
518
518
},
519
+ "host-darwin-arm64-corellium-ios" : & HostConfig {
520
+ Notes : "Virtual iOS devices hosted by Zenly on Corellium" ,
521
+ OwnerGithub : "znly" ,
522
+ IsReverse : true ,
523
+ ExpectNum : 3 ,
524
+ env : []string {
525
+ "GOROOT_BOOTSTRAP=/var/mobile/go-darwin-arm64-bootstrap" ,
526
+ },
527
+ },
519
528
"host-aix-ppc64-osuosl" : & HostConfig {
520
529
Notes : "AIX 7.2 VM on OSU; run by Tony Reix" ,
521
530
OwnerGithub : "trex58" ,
@@ -1927,6 +1936,14 @@ func init() {
1927
1936
"GOIOS_DEVICE_ID=5ec20fafe317e1c8ff51efc6d508cf19808474a2" ,
1928
1937
},
1929
1938
})
1939
+ addBuilder (BuildConfig {
1940
+ Name : "darwin-arm64-corellium" ,
1941
+ HostType : "host-darwin-arm64-corellium-ios" ,
1942
+ Notes : "Virtual iPhone SE running on Corellium; owned by zenly" ,
1943
+ buildsRepo : func (repo , branch , goBranch string ) bool {
1944
+ return repo == "go" && branch == "master" && goBranch == "master"
1945
+ },
1946
+ })
1930
1947
addBuilder (BuildConfig {
1931
1948
Name : "darwin-amd64-wikofever" ,
1932
1949
HostType : "host-darwin-amd64-eliasnaur-android" ,
Original file line number Diff line number Diff line change @@ -368,6 +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
372
+ {b ("darwin-arm64-corellium" , "go" ), isBuilder },
373
+
371
374
// A GOOS=darwin variant of the physical ARM Androids
372
375
// runs x/mobile and nothing else:
373
376
{b ("darwin-amd64-wikofever" , "mobile" ), isBuilder },
You can’t perform that action at this time.
0 commit comments