fix: install HEVC codec plugins for CI HEIC tests

Ubuntu 24.04 uses plugin-based libheif codecs. Added libheif-plugin-x265
(HEVC encoder) and libheif-plugin-libde265 (HEVC decoder) to the CI test
job. Debian bookworm (Docker) bundles these in libheif1 directly.
This commit is contained in:
Siddharth Kumar Sah
2026-04-04 21:50:35 +08:00
parent 169fb41d57
commit 8991cde0ab
+1 -1
View File
@@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install libheif tools (for HEIC tests)
run: sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libheif-examples
run: sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libheif-examples libheif-plugin-x265 libheif-plugin-libde265
- uses: pnpm/action-setup@v4