ci: Add system libheif test jobs to CI and Daily Regression - #439
Open
DichenZhang1 wants to merge 2 commits into
Open
ci: Add system libheif test jobs to CI and Daily Regression#439DichenZhang1 wants to merge 2 commits into
DichenZhang1 wants to merge 2 commits into
Conversation
- In cmake_linux.yml, add a matrix job testing with system libheif-dev and -DUHDR_BUILD_DEPS=0. - In daily-regression.yml, add a matrix configuration testing Linux GCC with system libheif-dev. - This ensures system libheif detection and symbol probing via Findlibheif.cmake are continuously validated in CI.
DichenZhang1
force-pushed
the
ci/test-system-libheif
branch
from
August 12, 2026 20:47
961bed2 to
6fa7977
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds CI and Daily Regression test matrix coverage for builds using a system-installed
libheif-devwith-DUHDR_BUILD_DEPS=0.Context & Motivation
Previously, both the Linux PR CI checks (
cmake_linux.yml) and Daily Regression matrix (daily-regression.yml) only tested two cases:-DUHDR_BUILD_DEPS=1).libheifinstalled (wherefind_package(libheif)quietly returnedNOT_FOUND).Neither CI nor daily regression ever exercised the system
libheifdiscovery and symbol check path incmake/Findlibheif.cmake.Changes
.github/workflows/cmake_linux.yml: Addedubuntu latest gcc rel ninja with system libheifmatrix job testing withlibheif-devinstalled and-DUHDR_BUILD_DEPS=0..github/workflows/daily-regression.yml: AddedLinux GCC (System libheif-dev)matrix job.