diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7fae21..8b78153 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: os: - ["ubuntu-22.04"] # "windows-2025" # Disabled until solution/workaround for NVTX is present + ["ubuntu-22.04", "windows-2025"] # "ubuntu-24.04" # Postponed as long as testing against CUDA 12.1, needs 12.6+ python: ["3.10", "3.11", "3.12", "3.13"] @@ -55,9 +55,9 @@ jobs: - name: Set up CUDA toolkit (Windows) if: runner.os == 'Windows' - uses: Jimver/cuda-toolkit@master + uses: Jimver/cuda-toolkit@v0.2.24 # https://github.com/Jimver/cuda-toolkit/issues/395 with: - cuda: "12.4.0" + cuda: "12.8.0" method: "network" - name: Install torch with CUDA support (Ubuntu) @@ -66,7 +66,7 @@ jobs: - name: Install torch with CUDA support (Windows) if: runner.os == 'Windows' - run: python -m pip install torch --index-url https://download.pytorch.org/whl/cu124 + run: python -m pip install torch --index-url https://download.pytorch.org/whl/cu128 - name: Install torchhull run: python -m pip install --editable ".[dev]"