Skip to content

Commit 52d5c61

Browse files
committed
tweaked workflow; correct cache key
1 parent 0af6796 commit 52d5c61

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build_cuda_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/cache@v4
4242
with:
4343
path: C:\Program Files (x86)\Intel\oneAPI\
44-
key: install-${{ env.WINDOWS_BASEKIT_URL }}-${{ env.WINDOWS_BASEKIT_COMPONENTS }}
44+
key: install-${{ env.CUDATOOLKIT_URL }}-${{ env.CUDATOOLKIT_COMPONENTS }}
4545

4646
- name: install cuda
4747
if: steps.cache-install.outputs.cache-hit != 'true'

backend/cuda/cibuildwheel.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ repair-wheel-command = ""
77

88
[tool.cibuildwheel.linux]
99
before-all = [
10-
"yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo",
10+
"yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo",
11+
"yum search cuda-toolkit*",
1112
"yum install -y cuda-toolkit-12-6"
1213
]
1314
environment = { CMAKE_CUDA_COMPILER = "/usr/local/cuda-12.6/bin/nvcc" }

0 commit comments

Comments
 (0)