mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-08-18 11:06:23 +00:00
feat(input): implement libvirtualhid adding new gamepad styles (#5368)
This commit is contained in:
14
.github/workflows/ci-linux.yml
vendored
14
.github/workflows/ci-linux.yml
vendored
@ -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
|
||||
|
||||
Reference in New Issue
Block a user