Skip to content

Commit 8211252

Browse files
authored
CI: attempt to upgrade Mac OS X deployment target to 10.12. (#11787)
Reading through the perplexing release build failure for `macos-x86_64` in [1], I noticed a warning stating the following: ``` warning: deployment target in MACOSX_DEPLOYMENT_TARGET was set to 10.9, but the minimum supported by `rustc` is 10.12 ``` I'm not sure if this has anything to do with the new build failure, but it seems worth addressing in any case. This PR updates the minimum Mac OS X version targeted by the build to 10.12. [1]: https://github.com/bytecodealliance/wasmtime/actions/runs/18228566641/job/51906071185#step:8:641
1 parent f0cd9b6 commit 8211252

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/build-build-matrix.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ const array = [
4242
"os": macos,
4343
"target": "x86_64-apple-darwin",
4444
// On OSX all we need to do is configure our deployment target as old as
45-
// possible. For now 10.9 is the limit.
46-
"env": { "MACOSX_DEPLOYMENT_TARGET": "10.9" },
45+
// possible. For now 10.12 is the limit.
46+
"env": { "MACOSX_DEPLOYMENT_TARGET": "10.12" },
4747
},
4848
{
4949
"build": "aarch64-macos",
5050
"os": macos,
5151
"target": "aarch64-apple-darwin",
52-
"env": { "MACOSX_DEPLOYMENT_TARGET": "10.9" },
52+
"env": { "MACOSX_DEPLOYMENT_TARGET": "10.12" },
5353
},
5454
{
5555
"build": "x86_64-windows",

0 commit comments

Comments
 (0)