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:
parent
a7def9e65d
commit
596cd23efc
1 changed files with 5 additions and 5 deletions
10
.github/workflows/nightly.yml
vendored
10
.github/workflows/nightly.yml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue