ci: enforce macOS 11.0 deployment target for ARM builds

Adds MACOSX_DEPLOYMENT_TARGET=11.0 environment variable and updates the cargo zigbuild target to aarch64-apple-darwin11.0 to explicitly require macOS 11.0 for ARM binary compilation.
This commit is contained in:
Eric Coissac
2026-06-23 11:00:29 +02:00
parent d02316dcf6
commit 527258f822
+3 -1
View File
@@ -112,7 +112,9 @@ jobs:
restore-keys: macos-arm64-cargo-
- name: Build macOS binary
run: cargo zigbuild --release --target aarch64-apple-darwin --no-default-features
env:
MACOSX_DEPLOYMENT_TARGET: "11.0"
run: cargo zigbuild --release --target aarch64-apple-darwin11.0 --no-default-features
- name: Prepare and upload artifact
env: