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 b08f6de
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Test runners

on:
push:
branches: [ runners ]
workflow_dispatch:

permissions: {}

jobs:
run-test-1:
name: Run workflow on small 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
sleep 120
run-test-2:
name: Run workflow on big 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
sleep 120
run-test-3:
name: Run second workflow on big 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
sleep 120

0 comments on commit b08f6de

Please sign in to comment.