mirror of
https://github.com/Z3Prover/z3
synced 2026-01-21 17:44:43 +00:00
updated dependencies
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8bd9bcf047
commit
c8df8fd730
2 changed files with 10 additions and 5 deletions
8
.github/workflows/nightly.yml
vendored
8
.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]
|
||||
needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86, manylinux-python-amd64, manylinux-python-arm64]
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
@ -497,6 +497,12 @@ jobs:
|
|||
with:
|
||||
name: WindowsBuild-x86
|
||||
path: artifacts
|
||||
|
||||
- name: Download ManyLinux AMD64 Build
|
||||
uses: actions/download-artifact@v7.0.0
|
||||
with:
|
||||
name: ManyLinuxPythonBuildAMD64
|
||||
path: artifacts
|
||||
|
||||
- name: Download ManyLinux Arm64 Build
|
||||
uses: actions/download-artifact@v7.0.0
|
||||
|
|
|
|||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
|
@ -548,10 +548,7 @@ jobs:
|
|||
echo $PWD/../../../artifacts/win64-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
|
||||
|
||||
- name: Copy manylinux wheels
|
||||
run: cp artifacts/*.whl src/api/python/dist
|
||||
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
|
|
@ -597,6 +594,8 @@ jobs:
|
|||
GH_TOKEN: ${{ github.token }}
|
||||
run: |
|
||||
find tmp -type f \( -name "*.zip" -o -name "*.whl" -o -name "*.tar.gz" -o -name "*.nupkg" -o -name "*.snupkg" \) > release_files.txt
|
||||
|
||||
less release_files.txt
|
||||
|
||||
gh release create z3-${{ env.RELEASE_VERSION }} \
|
||||
--title "z3-${{ env.RELEASE_VERSION }}" \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue