-
Notifications
You must be signed in to change notification settings - Fork 67
Description
Recently cuda installs started to hang (or take so long they timeout at 1.5 hours so far - I didn't try yet with no timeout) on the github 2022 windows runner.
Everything was working until as recently as yesterday, so I suspect it's an update to the runner and not cuda-toolkit (we've had the version pinned).
Hoping you might be able point me in the right direction to start to figure out what's going on though - maybe there's a way I can log to see if there's an error other output on the runner that would give us a clue about it?
Here's a minimal action to reproduce and there's one running here: https://github.com/heathhenley/test_windows_action_cuda_install/actions/runs/13573647553 - as far as I can tell it's just hanging there on the installer call:
name: Install CUDA Windows
on:
push:
branches:
- 'main'
- 'master'
jobs:
install-cuda:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install cuda-toolkit
uses: Jimver/[email protected]
with:
cuda: '12.5.0'
Maybe the answer is to open an issue on the runner image repo, but given that it's hanging (or taking significantly longer) with this action, I'm hoping you might have some tips.
Any help is appreciated, thanks for putting this action out there!
