Fix CI build by installing libdrm development dependencies

This commit is contained in:
jasonwitty 2025-11-21 00:46:20 -08:00
parent f4b6faffaa
commit 64b641368c

View File

@ -6,7 +6,7 @@ on:
- master - master
- feature/debian-packaging - feature/debian-packaging
tags: tags:
- 'v*' - "v*"
pull_request: pull_request:
branches: branches:
- master - master
@ -39,6 +39,11 @@ jobs:
- name: Install cargo-deb - name: Install cargo-deb
run: cargo install cargo-deb run: cargo install cargo-deb
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libdrm-dev libdrm-amdgpu1
- name: Install cross-compilation tools (ARM64) - name: Install cross-compilation tools (ARM64)
if: matrix.target == 'aarch64-unknown-linux-gnu' if: matrix.target == 'aarch64-unknown-linux-gnu'
run: | run: |