From 12e0fc447b251f367bdbbcff8039f6091abb737b Mon Sep 17 00:00:00 2001 From: bybrooklyn Date: Fri, 27 Feb 2026 20:45:06 -0500 Subject: [PATCH] CI: install libudev for hidapi builds --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7a7ca1..30677ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,10 @@ jobs: working-directory: sdk steps: - uses: actions/checkout@v4 + - name: Install system deps + run: | + sudo apt-get update + sudo apt-get install -y libudev-dev pkg-config - name: Install Rust uses: dtolnay/rust-toolchain@stable - name: Run tests