fix: install entire toolkit #7
Workflow file for this run
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: Wheel Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - ci | |
| jobs: | |
| build-wheel: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install CUDA 12.9.1 | |
| uses: Jimver/cuda-toolkit@v0.2.26 | |
| id: cuda-toolkit | |
| with: | |
| cuda: "12.9.1" | |
| linux-local-args: '["--toolkit"]' | |
| method: "network" | |
| - name: Install PyTorch & Build Dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install setuptools==68.0.0 ninja packaging wheel | |
| pip install torch==2.7.1 --index-url https://download.pytorch.org/whl/cu128 | |
| - name: Build Wheel | |
| env: | |
| MAX_JOBS: 2 | |
| TORCH_CUDA_ARCH_LIST: "8.0" | |
| run: | | |
| export PATH=/usr/local/cuda/bin:$PATH | |
| timeout 5h python setup.py bdist_wheel --dist-dir=dist | |
| ls -lh dist/ | |
| - name: Upload Wheel Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: lrnnx-wheel | |
| path: dist/*.whl | |
| retention-days: 7 |