Nightly Build #44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Nightly Build | |
| on: | |
| schedule: | |
| - cron: 33 6 * * 1-5 | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build_linux_release: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python_version: ["3.10", "3.14"] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-linux | |
| - uses: ./.github/actions/build-linux-release | |
| with: | |
| build-backend: ${{ matrix.python-version == '3.10' }} | |
| arch: "x86_64" | |
| - name: Upload mlx artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: linux-wheels-${{ matrix.python_version }} | |
| path: wheelhouse/mlx-*.whl | |
| retention-days: 7 | |
| - name: Upload mlx-cpu artifacts | |
| if: matrix.python_version == '3.10' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: mlx-cpu | |
| path: wheelhouse/mlx_cpu-*.whl | |
| retention-days: 7 | |
| build_linux_with_tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python_version: ["3.11", "3.12", "3.13", "3.14"] | |
| runner: | |
| - ubuntu-22.04 | |
| - ubuntu-22.04-arm | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-linux | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| - uses: ./.github/actions/build-linux | |
| - uses: ./.github/actions/test-linux | |
| build_mac_release: | |
| if: github.repository == 'ml-explore/mlx' | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.13"] | |
| runs-on: [self-hosted, macos] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-macos | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: ./.github/actions/build-macos | |
| - name: Build macOS 26 package | |
| uses: ./.github/actions/build-macos-release | |
| with: | |
| macos-target: 26.0 | |
| build-backend: ${{ matrix.python-version == '3.10' }} | |
| - name: Build macOS 15 package | |
| uses: ./.github/actions/build-macos-release | |
| with: | |
| macos-target: 15.0 | |
| build-backend: ${{ matrix.python-version == '3.10' }} | |
| - name: Build macOS 14 package | |
| uses: ./.github/actions/build-macos-release | |
| with: | |
| macos-target: 14.0 | |
| build-backend: ${{ matrix.python-version == '3.10' }} | |
| build_cuda_release: | |
| if: github.repository == 'ml-explore/mlx' | |
| runs-on: ubuntu-22-large | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup-linux | |
| with: | |
| toolkit: 'cuda-12.9' | |
| - name: Build Python package | |
| uses: ./.github/actions/build-cuda-release | |
| with: | |
| toolkit: 'cuda-12.9' | |
| arch: 'x86_64' | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: mlx-cuda | |
| path: wheelhouse/mlx_cuda_*.whl | |
| retention-days: 7 |