We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603eedc commit 07f1facCopy full SHA for 07f1fac
1 file changed
.github/workflows/ci.yml
@@ -41,6 +41,13 @@ jobs:
41
ci:
42
uses: BlueLua/.github/.github/workflows/ci.yml@main
43
with:
44
+ run: |
45
+ echo 'KERNEL=="event*", SUBSYSTEM=="input", MODE="0666"' | sudo tee /etc/udev/rules.d/99-evdev-test.rules
46
+ sudo udevadm control --reload-rules
47
+ sudo modprobe uinput || true
48
+ sudo udevadm trigger --subsystem-match=input || true
49
+ test -e /dev/uinput
50
+ sudo chmod 666 /dev/uinput
51
# Forward OS selections if triggered manually, otherwise use defaults for push/pr triggers
52
linux: ${{ (github.event_name == 'workflow_dispatch' && inputs.linux == true) || (github.event_name != 'workflow_dispatch' && true) }}
53
macos: ${{ (github.event_name == 'workflow_dispatch' && inputs.macos == true) || (github.event_name != 'workflow_dispatch' && false) }}
0 commit comments