3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-27 09:22:41 +00:00

Pin macOS nightly wheel target to 13.0

This commit is contained in:
copilot-swe-agent[bot] 2026-07-06 16:44:34 +00:00 committed by GitHub
parent 2f011ffcbb
commit aa759a4297
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,6 +33,8 @@ jobs:
name: "Mac Build x64"
runs-on: macos-latest
timeout-minutes: 90
env:
MACOSX_DEPLOYMENT_TARGET: "13.0"
steps:
- name: Checkout code
uses: actions/checkout@v7.0.0
@ -43,7 +45,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: |
@ -69,6 +71,8 @@ jobs:
name: "Mac ARM64 Build"
runs-on: macos-latest
timeout-minutes: 90
env:
MACOSX_DEPLOYMENT_TARGET: "13.0"
steps:
- name: Checkout code
uses: actions/checkout@v7.0.0
@ -79,7 +83,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: |