File tree 2 files changed +13
-1
lines changed 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -202,10 +202,11 @@ var builds = []*Build{
202
202
Builder : "windows-amd64-2008" ,
203
203
},
204
204
{
205
+ GoQuery : ">= go1.17beta1" ,
205
206
OS : "darwin" ,
206
207
Arch : "amd64" ,
207
208
Race : true ,
208
- Builder : "darwin-amd64-10_15 " ,
209
+ Builder : "darwin-amd64-11_0 " ,
209
210
},
210
211
{
211
212
GoQuery : ">= go1.16beta1" , // Go 1.16 Beta 1 is the first Go (pre-)release with the darwin/arm64 port.
@@ -274,6 +275,13 @@ var builds = []*Build{
274
275
Race : true ,
275
276
Builder : "freebsd-amd64-11_2" ,
276
277
},
278
+ {
279
+ GoQuery : "< go1.17beta1" , // See golang/go#46161.
280
+ OS : "darwin" ,
281
+ Arch : "amd64" ,
282
+ Race : true ,
283
+ Builder : "darwin-amd64-10_15" ,
284
+ },
277
285
278
286
// Test-only builds.
279
287
{
Original file line number Diff line number Diff line change @@ -104,10 +104,14 @@ func TestBuilderSelectionPerGoVersion(t *testing.T) {
104
104
// Go 1.16 continues to use the the FreeBSD 11.2 builder.
105
105
{"go1.16" , "freebsd-amd64" , "freebsd-amd64-11_2" },
106
106
{"go1.16" , "freebsd-386" , "freebsd-386-11_2" },
107
+ // Go 1.16 uses MacOS 10.15.
108
+ {"go1.16" , "darwin-amd64" , "darwin-amd64-10_15" },
107
109
108
110
// Go 1.17 starts to use the FreeBSD 11.4 builder.
109
111
{"go1.17" , "freebsd-amd64" , "freebsd-amd64-11_4" },
110
112
{"go1.17" , "freebsd-386" , "freebsd-386-11_4" },
113
+ // Go 1.17 uses MacOS 11.0.
114
+ {"go1.17" , "darwin-amd64" , "darwin-amd64-11_0" },
111
115
}
112
116
for _ , tc := range testCases {
113
117
t .Run (tc .target + "@" + tc .goVer , func (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments