Skip to content

Commit cb824d5

Browse files
committed
XXX: tweak
1 parent 643f541 commit cb824d5

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/ci_windows.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- os: windows-latest
2828
target: x86_64-pc-windows-msvc
2929
cuda: "12.8.1"
30-
linux-local-args: []
30+
#dll-dir: "nvvm\\bin"
3131
sub-packages:
3232
[
3333
"cublas",
@@ -43,21 +43,21 @@ jobs:
4343
- os: windows-latest
4444
target: x86_64-pc-windows-msvc
4545
cuda: "13.0.2"
46-
linux-local-args: []
46+
#dll-dir: "nvvm\\bin\\x64"
4747
sub-packages:
4848
[
49-
"crt",
49+
"crt", # new subpackage in CUDA 13
5050
"cublas",
5151
"cublas_dev",
5252
"cuda_profiler_api",
5353
"cudart",
5454
"curand",
5555
"curand_dev",
5656
"nvcc",
57-
"nvptxcompiler",
57+
"nvptxcompiler", # new subpackage in CUDA 13
5858
"nvrtc",
5959
"nvrtc_dev",
60-
"nvvm",
60+
"nvvm", # new subpackage in CUDA 13
6161
]
6262

6363
steps:
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
cuda: ${{ matrix.cuda }}
7272
method: network
73-
linux-local-args: ${{ toJson(matrix.linux-local-args) }}
73+
linux-local-args: []
7474
use-local-cache: false
7575
sub-packages: ${{ toJson(matrix.sub-packages) }}
7676
log-file-suffix: "${{matrix.os}}-${{matrix.cuda}}"
@@ -87,11 +87,13 @@ jobs:
8787

8888
- name: Update PATH to expose CUDA codegen backend
8989
run: |
90-
# njn: explain
90+
# njn: hmm
91+
# echo "$env:CUDA_PATH\\${{matrix.dll-dir}}" | `
92+
# Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
9193
echo "$env:CUDA_PATH\nvvm\bin" | `
9294
Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
93-
# echo "$env:CUDA_PATH\nvvm\bin\x64" | `
94-
# Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
95+
echo "$env:CUDA_PATH\nvvm\bin\x64" | `
96+
Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
9597
9698
- name: Verify CUDA, Rust installation
9799
run: |

0 commit comments

Comments
 (0)