Skip to content

Commit da0cd80

Browse files
committed
dashboard: only build tip on netbsd-arm64-bsiegert builder
The build fails on 1.15 and earlier. Updates golang/go#30824 Change-Id: I1f62d37cc05dde988cbb7e5124bd97916b38bcb3 Reviewed-on: https://go-review.googlesource.com/c/build/+/257938 Trust: Tobias Klauser <[email protected]> Trust: Benny Siegert <[email protected]> Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Benny Siegert <[email protected]>
1 parent 52a5443 commit da0cd80

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

dashboard/builders.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1953,8 +1953,11 @@ func init() {
19531953
},
19541954
})
19551955
addBuilder(BuildConfig{
1956-
Name: "netbsd-arm64-bsiegert",
1957-
HostType: "host-netbsd-arm64-bsiegert",
1956+
Name: "netbsd-arm64-bsiegert",
1957+
HostType: "host-netbsd-arm64-bsiegert",
1958+
buildsRepo: func(repo, branch, goBranch string) bool {
1959+
return atLeastGo1(goBranch, 16) && buildRepoByDefault(repo)
1960+
},
19581961
distTestAdjust: noTestDirAndNoReboot,
19591962
tryBot: nil,
19601963
env: []string{

0 commit comments

Comments
 (0)