From 9a8b247641cd1c287ac437c5ad01a93defa35816 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Sat, 15 Mar 2025 13:42:30 -0400 Subject: [PATCH] Output CUDA files in workflow This will help debug windows. We'll see how long it takes and how messy it is to see if we actually land it. --- .github/workflows/rust.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6f8d403b..cc8954a1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -36,6 +36,15 @@ jobs: with: cuda: '11.2.2' + - name: List CUDA_PATH files (Linux) + if: runner.os == 'Linux' + run: find "$CUDA_PATH" -type f + + - name: List CUDA_PATH files (Windows) + if: runner.os == 'Windows' + shell: pwsh + run: Get-ChildItem -Path $env:CUDA_PATH -Recurse | ForEach-Object { $_.FullName } + # random command that forces rustup to install stuff in rust-toolchain - name: Install rust-toolchain run: cargo version