mirror of
https://github.com/Z3Prover/z3
synced 2026-05-05 01:45:15 +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:
|
python-package:
|
||||||
name: "Python packaging"
|
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
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
@ -497,6 +497,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: WindowsBuild-x86
|
name: WindowsBuild-x86
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
|
- name: Download ManyLinux AMD64 Build
|
||||||
|
uses: actions/download-artifact@v7.0.0
|
||||||
|
with:
|
||||||
|
name: ManyLinuxPythonBuildAMD64
|
||||||
|
path: artifacts
|
||||||
|
|
||||||
- name: Download ManyLinux Arm64 Build
|
- name: Download ManyLinux Arm64 Build
|
||||||
uses: actions/download-artifact@v7.0.0
|
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/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-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
|
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
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
|
|
@ -597,6 +594,8 @@ jobs:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
run: |
|
run: |
|
||||||
find tmp -type f \( -name "*.zip" -o -name "*.whl" -o -name "*.tar.gz" -o -name "*.nupkg" -o -name "*.snupkg" \) > release_files.txt
|
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 }} \
|
gh release create z3-${{ env.RELEASE_VERSION }} \
|
||||||
--title "z3-${{ env.RELEASE_VERSION }}" \
|
--title "z3-${{ env.RELEASE_VERSION }}" \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue