Skip to content

Commit 1a439bd

Browse files
committed
Remove problematic runner configurations
- Remove Windows GPU runner (no NVIDIA drivers installed) - Remove ARM64 runner (not available on GitHub) - Keep working configurations: GPU Linux + CPU Linux/Windows Signed-off-by: cdunning <cdunning@nvidia.com>
1 parent 64f7717 commit 1a439bd

1 file changed

Lines changed: 11 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,6 @@ jobs:
2626
os: linux
2727
gpu: false
2828
timeout: 15
29-
- name: "CPU Linux ARM64"
30-
runner: ubuntu-24.04-arm64
31-
os: linux
32-
gpu: false
33-
timeout: 15
34-
- name: "GPU Windows x86_64"
35-
runner: windows-amd64-gpu-rtxpro6000-latest-1
36-
os: windows
37-
gpu: true
38-
timeout: 30
3929
- name: "CPU Windows x86_64"
4030
runner: windows-latest
4131
os: windows
@@ -76,7 +66,13 @@ jobs:
7666
echo === Host Hardware Information ===
7767
echo Runner: ${{ matrix.runner }}
7868
if "${{ matrix.gpu }}"=="true" (
79-
nvidia-smi || echo nvidia-smi not available
69+
echo Checking PATH for nvidia-smi:
70+
where nvidia-smi
71+
echo Trying nvidia-smi from PATH:
72+
nvidia-smi || echo nvidia-smi failed from PATH
73+
echo Trying common NVIDIA locations:
74+
"C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe" || echo Not in NVSMI folder
75+
"C:\Windows\System32\nvidia-smi.exe" || echo Not in System32
8076
echo Checking GPU via wmic:
8177
wmic path win32_VideoController get name
8278
) else (
@@ -118,9 +114,10 @@ jobs:
118114
shell: cmd
119115
run: |
120116
echo === Testing with GPU access ===
121-
nvidia-smi || echo nvidia-smi not available on Windows runner
122-
echo Checking for GPU via wmic...
123-
wmic path win32_VideoController get name
117+
echo Trying nvidia-smi from different locations:
118+
nvidia-smi || "C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe" || "C:\Windows\System32\nvidia-smi.exe" || echo All nvidia-smi attempts failed
119+
echo Checking Docker GPU support:
120+
docker run --rm --gpus all hello-world || echo Docker GPU support not available
124121
echo Windows GPU runner test completed
125122
126123
- name: Test Windows Container CPU Only

0 commit comments

Comments
 (0)