Skip to content

Commit

Permalink
cmd/release: use macOS 10.15 (Catalina) for releases
Browse files Browse the repository at this point in the history
This builder has Xcode installed instead of just the command-line
tools. Because the SDKs are absent when just the command-line tools
are installed, no base SDK version is being set in the go binary
(it uses external linking) and codesign was printing a warning about
library validation. Updating to use this builder gets rid of that
warning.

Updates golang/go#35459

Change-Id: Ib548c998042f499c2d57324e9a8746594ea7060d
Reviewed-on: https://go-review.googlesource.com/c/build/+/208268
Run-TryBot: Andrew Bonventre <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Carlos Amedee <[email protected]>
  • Loading branch information
andybons committed Nov 22, 2019
1 parent 2f29401 commit 48fb0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/release/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ var builds = []*Build{
OS: "darwin",
Arch: "amd64",
Race: true,
Builder: "darwin-amd64-10_11",
Builder: "darwin-amd64-10_15",
},
{
OS: "linux",
Expand Down

0 comments on commit 48fb0f1

Please sign in to comment.