fix(Build.py + CI): add --userdataobj flag; fix lcov path + coverage artifacts#64
Merged
kiritigowda merged 1 commit intoJun 21, 2026
Conversation
|
Simon seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
ff7e621 to
bae5b22
Compare
bae5b22 to
ebb5f49
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 fixes two issues that currently prevent the OpenVX CI workflow from running successfully:
1.
Build.pymissing--userdataobjflag (causes CI build failure)The CI workflow added
--userdataobjto the Build.py invocation, butBuild.pydoes not recognize this argument, causing an immediateSystemExit: 2(unknown option) failure.Fix: Added
--userdataobjoption toBuild.pythat maps to-DOPENVX_USE_USER_DATA_OBJECT=ON.2. Coverage collection broken in
cts-baselineTwo related issues prevented
lcovfrom successfully collecting coverage data:build-debugjob only uploadedinstall/andinclude/, butlcovneeds thebuild/Linux/x64/Debug/tree containing.gcnoand.gcdafiles.cts-baselinejob runs from insidebuild-cts/, so the relative pathbuild/Linux/x64/Debugresolves incorrectly.Fix:
build/Linux/x64/Debug/to theopenvx-debugartifact upload paths.${{ github.workspace }}/build/Linux/x64/Debug.Related