Skip to content

Commit

Permalink
dashboard: add OS X 10.8 and 10.11 reverse builders
Browse files Browse the repository at this point in the history
Updates golang/go#9495
Updates golang/go#12185

Change-Id: I84548011823334f0876636f8e9685e07238cafc4
Reviewed-on: https://go-review.googlesource.com/28171
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
bradfitz committed Aug 30, 2016
1 parent 58cb282 commit 8b77adf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions dashboard/builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,24 @@ func init() {
env: []string{"GOARCH=386", "GOHOSTARCH=386"},
NumTestHelpers: 0, // disabled per golang.org/issue/12979
})

addBuilder(BuildConfig{
Name: "darwin-amd64-10_8",
IsReverse: true,
FlakyNet: true,
env: []string{
"GOROOT_BOOTSTRAP=/Users/gopher/go1.4",
},
})
addBuilder(BuildConfig{
Name: "darwin-amd64-10_11",
FlakyNet: true,
IsReverse: true,
env: []string{
"GOROOT_BOOTSTRAP=/Users/gopher/go1.4",
},
})

addBuilder(BuildConfig{
Name: "android-arm-sdk19",
Notes: "Android ARM device running android-19 (KitKat 4.4), attatched to Mac Mini",
Expand Down

0 comments on commit 8b77adf

Please sign in to comment.