From ffb381e40e6766b8c3ebec9c098d3e37347142f1 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Mon, 11 Aug 2025 23:46:08 -0700 Subject: [PATCH] install deps libdrm-dev libdrm-amdgpu1 on build box --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85a90c8..ded310f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,8 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: components: clippy, rustfmt + - name: Install system dependencies + run: sudo apt-get update && sudo apt-get install -y libdrm-dev libdrm-amdgpu1 - name: Cargo fmt run: cargo fmt --all -- --check - name: Clippy