-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 909 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
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
apt update
apt list --upgradable