From 84db7528efda9a23a5514717c4e3cbc6b3141800 Mon Sep 17 00:00:00 2001 From: Aaron Gray Date: Wed, 19 Feb 2025 19:18:52 +0000 Subject: [PATCH] Create self-hosted-action-runner.yml --- .../workflows/self-hosted-action-runner.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/self-hosted-action-runner.yml diff --git a/.github/workflows/self-hosted-action-runner.yml b/.github/workflows/self-hosted-action-runner.yml new file mode 100644 index 0000000..67af83d --- /dev/null +++ b/.github/workflows/self-hosted-action-runner.yml @@ -0,0 +1,24 @@ +name: self-hosted-action-runner +on: push +jobs: + Ubuntu-ARM64: + runs-on: + [self-hosted, ubuntu-22.04, ARM64] + steps: + - name: ubuntu-latest-arm64 + run: + echo "ubuntu-latest arm64" + lsb_release -a + lscpu + + Ubuntu-ARM64-GPU: + runs-on: + [self-hosted, ubuntu-22.04, ARM64] + steps: + - name: ubuntu-latest-arm64-gpu + run: + echo "ubuntu-latest arm64" + lsb_release -a + lscpu + lshw -C display + lspci | grep ' VGA ' | cut -d" " -f 1 | xargs -i lspci -v -s {}