From 43350eb9dafe092cee65dea29a19340f45c76d40 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 18 Jan 2026 06:20:49 +0000 Subject: [PATCH] Remove duplicate manylinux wheels from PythonPackages artifact Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --- .github/workflows/nightly.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 004fbb64d..106037e56 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -472,7 +472,7 @@ jobs: python-package: name: "Python packaging" - needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86, manylinux-python-arm64] + needs: [mac-build-x64, mac-build-arm64, windows-build-x64, windows-build-x86] runs-on: ubuntu-24.04 steps: - name: Checkout code @@ -507,12 +507,6 @@ jobs: name: WindowsBuild-x86 path: artifacts - - name: Download ManyLinux Arm64 Build - uses: actions/download-artifact@v7.0.0 - with: - name: ManyLinuxPythonBuildArm64 - path: artifacts - - name: Extract builds run: | cd artifacts @@ -532,7 +526,6 @@ 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 - cp $PWD/../../../artifacts/*.whl dist/ || true - name: Upload artifact uses: actions/upload-artifact@v6