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