Skip to content

Commit c0b6c31

Browse files
committed
dashboard: disable pkgsite for pre-1.21 android builders
The pkgsite tests need CL 472096, released in 1.21 to run properly. Don't run them on 1.20 and earlier. For golang/go#59347 For golang/go#61209 Change-Id: I32ba9652401db3b1fb9f23c9777e4514332abaef Reviewed-on: https://go-review.googlesource.com/c/build/+/524947 TryBot-Result: Gopher Robot <[email protected]> Run-TryBot: Michael Matloob <[email protected]> Reviewed-by: Bryan Mills <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent b268245 commit c0b6c31

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dashboard/builders.go

+6
Original file line numberDiff line numberDiff line change
@@ -2816,6 +2816,9 @@ func init() {
28162816
b = true
28172817
case "build", "blog", "talks", "review", "tour", "website":
28182818
b = false
2819+
case "pkgsite":
2820+
// The pkgsite tests need CL 472096, released in 1.21 to run properly.
2821+
b = atLeastGo1(goBranch, 21)
28192822
}
28202823
return b
28212824
},
@@ -2854,6 +2857,9 @@ func init() {
28542857
b = true
28552858
case "build", "blog", "talks", "review", "tour", "website":
28562859
b = false
2860+
case "pkgsite":
2861+
// The pkgsite tests need CL 472096, released in 1.21 to run properly.
2862+
b = atLeastGo1(goBranch, 21)
28572863
}
28582864
return b
28592865
},

0 commit comments

Comments
 (0)