We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bd1ad6 commit 9b07099Copy full SHA for 9b07099
.github/workflows/rust.yml
@@ -36,6 +36,15 @@ jobs:
36
with:
37
cuda: '11.2.2'
38
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
48
# random command that forces rustup to install stuff in rust-toolchain
49
- name: Install rust-toolchain
50
run: cargo version
0 commit comments