diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..37f5a99 --- /dev/null +++ b/.github/workflows/test.yml @@ -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