Skip to content

Commit a022e90

Browse files
jclulowbradfitz
authored andcommitted
dashboard: add interim illumos builder
While the work to make illumos a first class GCE guest is completed, use this interim zone provided by an illumos community member to run illumos builds. Updates golang/go#15581 Change-Id: I1784847e5407894d01ce0aadf489b38d7e5c1924 Reviewed-on: https://go-review.googlesource.com/c/build/+/201597 Reviewed-by: Brad Fitzpatrick <[email protected]> Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 68cf80d commit a022e90

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

dashboard/builders.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,14 @@ var Hosts = map[string]*HostConfig{
441441
env: []string{"GOROOT_BOOTSTRAP=/usr/local/go-bootstrap"},
442442
SSHUsername: "root",
443443
},
444+
"host-illumos-amd64-jclulow": &HostConfig{
445+
Notes: "SmartOS [email protected] zone",
446+
447+
OwnerGithub: "jclulow",
448+
IsReverse: true,
449+
ExpectNum: 1,
450+
SSHUsername: "gobuild",
451+
},
444452
"host-solaris-oracle-amd64-oraclerel": &HostConfig{
445453
Notes: "Oracle Solaris amd64 Release System",
446454
Owner: "", // TODO: find current owner
@@ -2012,6 +2020,11 @@ func init() {
20122020
"CGO_ENABLED=1",
20132021
},
20142022
})
2023+
addBuilder(BuildConfig{
2024+
Name: "illumos-amd64",
2025+
HostType: "host-illumos-amd64-jclulow",
2026+
MinimumGoVersion: types.MajorMinor{1, 13},
2027+
})
20152028
addBuilder(BuildConfig{
20162029
Name: "solaris-amd64-oraclerel",
20172030
HostType: "host-solaris-oracle-amd64-oraclerel",

0 commit comments

Comments
 (0)