Skip to content

Commit

Permalink
Run a workflow in the IDC runners
Browse files Browse the repository at this point in the history
  • Loading branch information
carlewis committed Jan 21, 2025
1 parent a92cffd commit f9a5e4c
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Test runners

on:
push:
branches: [ runners ]
workflow_dispatch:

permissions: {}

jobs:
run-test-1:
name: Run workflow on runner
runs-on: idc-gpu-xlarge
steps:
- name: Checkout repostiory
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Build
shell: bash
run: |
pwd
df -h
free -m
cat /proc/cpuinfo | grep processor
sudo apt update
apt list --upgradable
run-test-2:
name: Run workflow on runner
runs-on: idc-gpu-2xlarge
steps:
- name: Checkout repostiory
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Build
shell: bash
run: |
pwd
df -h
free -m
cat /proc/cpuinfo | grep processor
sudo apt update
apt list --upgradable

0 comments on commit f9a5e4c

Please sign in to comment.