Skip to content

Commit

Permalink
Update self-hosted-action-runner.yml - removed sudo's
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronNGray authored Feb 19, 2025
1 parent 1e5cb46 commit 92433f8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/self-hosted-action-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
run: echo "ubuntu-latest arm64"
- name: lsb_release -a
run: lsb_release -a
- name: sudo lscpu
run: sudo lscpu
- name: lscpu
run: lscpu

Ubuntu-ARM64-GPU:
runs-on:
Expand All @@ -20,9 +20,9 @@ jobs:
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 {}
- name: lscpu
run: lscpu
- name: lshw -C display
run: lshw -C display
- name: lspci | grep ' VGA ' | cut -d" " -f 1 | xargs -i lspci -v -s {}
run: lspci | grep ' VGA ' | cut -d" " -f 1 | xargs -i lspci -v -s {}

0 comments on commit 92433f8

Please sign in to comment.