mirror of
https://github.com/Z3Prover/z3
synced 2026-01-23 10:33:59 +00:00
Add Windows ARM64 Python wheel builds (#8280)
* Initial plan * Add Windows ARM64 Python wheel building to nightly and release builds Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Improve clarity of wheel copying step with better comments Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Use existing windows-build-arm64 output instead of separate build job Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
c392592831
commit
d055eea24e
3 changed files with 21 additions and 4 deletions
12
.github/workflows/nightly.yml
vendored
12
.github/workflows/nightly.yml
vendored
|
|
@ -463,7 +463,7 @@ jobs:
|
|||
|
||||
python-package:
|
||||
name: "Python packaging"
|
||||
needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86, manylinux-python-amd64, manylinux-python-arm64]
|
||||
needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86, windows-build-arm64, manylinux-python-amd64, manylinux-python-arm64]
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
@ -498,6 +498,12 @@ jobs:
|
|||
name: WindowsBuild-x86
|
||||
path: artifacts
|
||||
|
||||
- name: Download Win ARM64 Build
|
||||
uses: actions/download-artifact@v7.0.0
|
||||
with:
|
||||
name: WindowsBuild-arm64
|
||||
path: artifacts
|
||||
|
||||
- name: Download ManyLinux AMD64 Build
|
||||
uses: actions/download-artifact@v7.0.0
|
||||
with:
|
||||
|
|
@ -514,11 +520,12 @@ jobs:
|
|||
run: |
|
||||
cd artifacts
|
||||
ls
|
||||
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin
|
||||
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin win-arm64-bin
|
||||
cd osx-x64-bin && unzip ../z3-*-x64-osx*.zip && cd ..
|
||||
cd osx-arm64-bin && unzip ../z3-*-arm64-osx*.zip && cd ..
|
||||
cd win32-bin && unzip ../z3-*-x86-win*.zip && cd ..
|
||||
cd win64-bin && unzip ../z3-*-x64-win*.zip && cd ..
|
||||
cd win-arm64-bin && unzip ../z3-*-arm64-win*.zip && cd ..
|
||||
|
||||
- name: Build Python packages
|
||||
run: |
|
||||
|
|
@ -527,6 +534,7 @@ jobs:
|
|||
python3 setup.py sdist
|
||||
echo $PWD/../../../artifacts/win32-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/win64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/win-arm64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/osx-x64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/osx-arm64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
|
||||
|
|
|
|||
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
|
@ -482,7 +482,7 @@ jobs:
|
|||
|
||||
python-package:
|
||||
name: "Python packaging"
|
||||
needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86, manylinux-python-amd64, manylinux-python-arm64]
|
||||
needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86, windows-build-arm64, manylinux-python-amd64, manylinux-python-arm64]
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
@ -517,6 +517,12 @@ jobs:
|
|||
name: WindowsBuild-x86
|
||||
path: artifacts
|
||||
|
||||
- name: Download Win ARM64 Build
|
||||
uses: actions/download-artifact@v7.0.0
|
||||
with:
|
||||
name: WindowsBuild-arm64
|
||||
path: artifacts
|
||||
|
||||
- name: Download ManyLinux AMD64 Build
|
||||
uses: actions/download-artifact@v7.0.0
|
||||
with:
|
||||
|
|
@ -533,11 +539,12 @@ jobs:
|
|||
run: |
|
||||
cd artifacts
|
||||
ls
|
||||
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin
|
||||
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin win-arm64-bin
|
||||
cd osx-x64-bin && unzip ../z3-*-x64-osx*.zip && cd ..
|
||||
cd osx-arm64-bin && unzip ../z3-*-arm64-osx*.zip && cd ..
|
||||
cd win32-bin && unzip ../z3-*-x86-win*.zip && cd ..
|
||||
cd win64-bin && unzip ../z3-*-x64-win*.zip && cd ..
|
||||
cd win-arm64-bin && unzip ../z3-*-arm64-win*.zip && cd ..
|
||||
|
||||
- name: Build Python packages
|
||||
run: |
|
||||
|
|
@ -546,6 +553,7 @@ jobs:
|
|||
python3 setup.py sdist
|
||||
echo $PWD/../../../artifacts/win32-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/win64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/win-arm64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/osx-x64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
echo $PWD/../../../artifacts/osx-arm64-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel
|
||||
|
||||
|
|
|
|||
|
|
@ -316,6 +316,7 @@ class bdist_wheel(_bdist_wheel):
|
|||
# windows arm64 is not supported by pypi yet
|
||||
("win", "x64"): "win_amd64",
|
||||
("win", "x86"): "win32",
|
||||
("win", "arm64"): "win_arm64",
|
||||
("osx", "x64"): f"macosx_{os_version_tag}_x86_64",
|
||||
("osx", "arm64"): f"macosx_{os_version_tag}_arm64",
|
||||
("darwin", "x86_64"): f"macosx_{os_version_tag}_x86_64",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue