Skip to content

Commit 98fedbd

Browse files
committed
fix: install systemd in Arch Linux container for udevadm
The GitHub Actions workflow was failing because udevadm was not available in the Arch Linux container. Installing systemd provides the udevadm command needed to verify the udev rules.
1 parent 783864b commit 98fedbd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/verify.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v6
1717

18+
- name: Install dependencies
19+
run: |
20+
pacman -Sy --noconfirm systemd
21+
1822
- name: Test 51-android.rules
1923
run: |
2024
groupadd adbusers

0 commit comments

Comments
 (0)