feat(input): implement libvirtualhid adding new gamepad styles (#5368)

This commit is contained in:
Dave Lane
2026-08-16 15:24:58 -04:00
committed by GitHub
parent cf52f4b6f3
commit 687e12d013
65 changed files with 5907 additions and 3789 deletions

View File

@ -59,7 +59,8 @@ jobs:
libwayland-dev \
libx11-xcb-dev \
libxcb-dri3-dev \
libxfixes-dev
libxfixes-dev \
libxtst-dev
- name: Build latest libva
env:
@ -178,9 +179,14 @@ jobs:
- name: Sync Python tools
run: |
uv sync --locked \
--python "${PYTHON_VERSION}" \
--no-python-downloads --no-install-project
uv_sync_args=(
--locked
--python "${PYTHON_VERSION}"
--no-python-downloads
--no-install-project
)
# uv.lock pins external artifacts; reviewed local build hooks are required for gcovr.
uv sync "${uv_sync_args[@]}" # NOSONAR(githubactions:S8541)
- name: Run tests
id: test