From 2f011ffcbb07443494b0cc1dac7ec002e1a6382f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Jul 2026 00:34:27 +0000 Subject: [PATCH] Pin macOS wheel deployment target to 13.0 in release workflow --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07387885bc..1e280e056c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,8 @@ jobs: name: "Mac Build x64" runs-on: macos-15 timeout-minutes: 90 + env: + MACOSX_DEPLOYMENT_TARGET: "13.0" steps: - name: Checkout code uses: actions/checkout@v7.0.0 @@ -44,7 +46,7 @@ jobs: python-version: '3.x' - name: Build - run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=x64 + run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=x64 --os=osx-13.0 - name: Validate libz3.dylib and z3 architecture (must be x86_64) run: | @@ -76,6 +78,8 @@ jobs: name: "Mac ARM64 Build" runs-on: macos-15 timeout-minutes: 90 + env: + MACOSX_DEPLOYMENT_TARGET: "13.0" steps: - name: Checkout code uses: actions/checkout@v7.0.0 @@ -86,7 +90,7 @@ jobs: python-version: '3.x' - name: Build - run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=arm64 + run: python scripts/mk_unix_dist.py --dotnet-key=$GITHUB_WORKSPACE/resources/z3.snk --arch=arm64 --os=osx-13.0 - name: Validate libz3.dylib and z3 architecture (must be arm64) run: |