Skip to content

Commit 9b07099

Browse files
authored
Output CUDA files in workflow (Rust-GPU#161)
This will help debug.
1 parent 4bd1ad6 commit 9b07099

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/rust.yml

+9
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ jobs:
3636
with:
3737
cuda: '11.2.2'
3838

39+
- name: List CUDA_PATH files (Linux)
40+
if: runner.os == 'Linux'
41+
run: find "$CUDA_PATH" -type f
42+
43+
- name: List CUDA_PATH files (Windows)
44+
if: runner.os == 'Windows'
45+
shell: pwsh
46+
run: Get-ChildItem -Path $env:CUDA_PATH -Recurse | ForEach-Object { $_.FullName }
47+
3948
# random command that forces rustup to install stuff in rust-toolchain
4049
- name: Install rust-toolchain
4150
run: cargo version

0 commit comments

Comments
 (0)