3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-18 08:18:55 +00:00

Fix nightly build failures in ARM64 and Python packaging jobs (#8213)

* Initial plan

* Fix nightly build workflow failures for ARM64 and Python packaging

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:
Copilot 2026-01-16 10:39:05 -08:00 committed by GitHub
parent a7def9e65d
commit 596cd23efc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -343,7 +343,7 @@ jobs:
uses: actions/upload-artifact@v6
with:
name: WindowsBuild-arm64
path: build-dist/arm64/dist/*.zip
path: dist/arm64/*.zip
retention-days: 2
# ============================================================================
@ -517,10 +517,10 @@ jobs:
run: |
cd artifacts
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin
cd osx-x64-bin && unzip ../*x64-osx*.zip && cd ..
cd osx-arm64-bin && unzip ../*arm64-osx*.zip && cd ..
cd win32-bin && unzip ../*x86-win*.zip && cd ..
cd win64-bin && unzip ../*x64-win*.zip && cd ..
cd osx-x64-bin && unzip ../*-x64-osx*.zip && cd ..
cd osx-arm64-bin && unzip ../*-arm64-osx*.zip && cd ..
cd win32-bin && unzip ../*-x86-win*.zip && cd ..
cd win64-bin && unzip ../*-x64-win*.zip && cd ..
- name: Build Python packages
run: |