mirror of
https://github.com/Z3Prover/z3
synced 2026-05-03 00:45:15 +00:00
Fix artifact extraction patterns in nightly Python packaging job (#8217)
* Initial plan * Fix unzip patterns in Python packaging 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
6f41e9fc29
commit
ac097f1d74
1 changed files with 4 additions and 4 deletions
8
.github/workflows/nightly.yml
vendored
8
.github/workflows/nightly.yml
vendored
|
|
@ -517,10 +517,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd artifacts
|
cd artifacts
|
||||||
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin
|
mkdir -p osx-x64-bin osx-arm64-bin win32-bin win64-bin
|
||||||
cd osx-x64-bin && unzip ../*-x64-osx*.zip && cd ..
|
cd osx-x64-bin && unzip ../z3-*-x64-osx*.zip && cd ..
|
||||||
cd osx-arm64-bin && unzip ../*-arm64-osx*.zip && cd ..
|
cd osx-arm64-bin && unzip ../z3-*-arm64-osx*.zip && cd ..
|
||||||
cd win32-bin && unzip ../*-x86-win*.zip && cd ..
|
cd win32-bin && unzip ../z3-*-x86-win*.zip && cd ..
|
||||||
cd win64-bin && unzip ../*-x64-win*.zip && cd ..
|
cd win64-bin && unzip ../z3-*-x64-win*.zip && cd ..
|
||||||
|
|
||||||
- name: Build Python packages
|
- name: Build Python packages
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue