Skip to content

Commit

Permalink
Update keep_alive.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkichler authored Oct 7, 2024
1 parent 475bbb2 commit 3e132bd
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/keep_alive.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: keep-alive
name: Keep runners alive

on:
schedule:
Expand All @@ -9,8 +9,15 @@ on:
workflow_dispatch:

jobs:
keep-alive:
runs-on: [self-hosted]
windows_gpu:
runs-on: [self-hosted,Windows]
steps:
- name: gpu info
run: nvidia-smi
- name: Windows keep alive
shell: powershell
run: Write-Host "Keep alive"

wsl_gpu:
runs-on: [self-hosted,WSL]
steps:
- name: WSL keep alive
run: echo "Keep alive"

0 comments on commit 3e132bd

Please sign in to comment.