-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |