From 05bb0962360f66c4362cd21674f294c63c2880dc Mon Sep 17 00:00:00 2001 From: Michael de Gans Date: Wed, 22 May 2024 22:55:31 -0700 Subject: [PATCH] Fix Windows Build Cuda install was failing on Windows 2022 because of this issue: https://github.com/Jimver/cuda-toolkit/issues/263 So we'll use windows-2019 to build instead. --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52e6fb4..5a2b8b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,7 +97,7 @@ jobs: compression-level: 9 overwrite: true windows-test: - runs-on: windows-latest + runs-on: windows-2019 steps: - name: Checkout repository uses: actions/checkout@v4 @@ -112,6 +112,8 @@ jobs: version: "18" - name: Installe Cuda Toolkit uses: Jimver/cuda-toolkit@v0.2.15 + with: + cuda: "12.4.1" - name: Run cargo check uses: actions-rs/cargo@v1 with: