Skip to content

Commit

Permalink
Update self-hosted-action-runner.yml - made steps and added sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronNGray authored Feb 19, 2025
1 parent 1ffafbe commit 1e5cb46
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/self-hosted-action-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,23 @@ jobs:
[self-hosted, ubuntu-22.04, ARM64]
steps:
- name: ubuntu-latest-arm64
run: |
echo "ubuntu-latest arm64"
lsb_release -a
lscpu
run: echo "ubuntu-latest arm64"
- name: lsb_release -a
run: lsb_release -a
- name: sudo lscpu
run: sudo 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 {}
run: echo "ubuntu-latest arm64"
- name: lsb_release -a
run: lsb_release -a
- name: sudo lscpu
run: sudo lscpu
- name: sudo lshw -C display
run: sudo lshw -C display
- name: sudo lspci | grep ' VGA ' | cut -d" " -f 1 | xargs -i lspci -v -s {}
run: sudo lspci | grep ' VGA ' | cut -d" " -f 1 | xargs -i lspci -v -s {}

0 comments on commit 1e5cb46

Please sign in to comment.