ci(debusine): include qli workspace for DKMS build-dependencies - #56
Open
Bjordis Collaku (bjordiscollaku) wants to merge 1 commit into
Open
ci(debusine): include qli workspace for DKMS build-dependencies#56Bjordis Collaku (bjordiscollaku) wants to merge 1 commit into
Bjordis Collaku (bjordiscollaku) wants to merge 1 commit into
Conversation
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
The Debian Debusine build path now needs kgsl-dkms as a build dependency (via PR #54 against qcom/debian/latest). The package is published in the qli Debusine workspace, so the build step must expose qli as an extra build-dependency source when invoking debusine-action/lib/build. Set EXTRA_BUILD_DEP_WORKSPACES=qli in Build in Debusine and pass DEBUSINE_USER, which lib/build currently requires to apply its extra_repositories compatibility workaround. Signed-off-by: Bjordis Collaku <bcollaku@qti.qualcomm.com>
Bjordis Collaku (bjordiscollaku)
force-pushed
the
feat/debusine-extra-build-dep-workspaces
branch
from
July 8, 2026 22:09
4f590fd to
18f6efe
Compare
Keerthi Gowda (keerthi-go)
approved these changes
Jul 15, 2026
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.
Context
PR #54 introduces DKMS module integration on the packaging branch (
qcom/debian/latest) and addskgsl-dkms (>= 1.0.2)toBuild-Depends.The Debian build path on
mainruns through Debusine (build-kernel-debusine.yml), where build-dependency resolution is scoped to configured repositories/workspaces.kgsl-dkmsis published in Debusine workspaceqli, so the build submission path must explicitly include that workspace for dependency resolution.Decision
Thread Debusine workspace dependency context from the caller workflow into
debusine-action/lib/buildby setting, in theBuild in Debusinestep:EXTRA_BUILD_DEP_WORKSPACES=qliDEBUSINE_USER=${{ secrets.DEBUSINE_USER }}lib/buildalready supportsEXTRA_BUILD_DEP_WORKSPACESand requiresDEBUSINE_USERfor its currentextra_repositoriescompatibility flow.Scope
One targeted workflow change:
.github/workflows/build-kernel-debusine.ymlBuild in Debusineenv block onlyNo packaging metadata, kernel build scripts, or Ubuntu workflow behavior changed.
Why This Unblocks DKMS
Without this change, the Debusine Debian pipeline cannot discover
kgsl-dkmsfromqli, which blocks PR #54’s DKMS-enabled build path at dependency resolution time.With this change, the Debusine submission includes
qlias an additional build-dependency source, enabling the Debian pipeline to resolve DKMS prerequisites introduced by PR #54.Validation Evidence
Validation run:
build-kernel-deb.ymlfeat/debusine-extra-build-dep-workspacespkg-linux-qcom-ref=feat/dkms-build-time-module-integrationtrixieObserved in
Build in Debusine / Build (Debusine)logs:DEBUSINE_USERis presentEXTRA_BUILD_DEP_WORKSPACES: qliis presentextra_repositoriescontains//workspace=qli/trixie@debian:suiteand is expanded to explicit repository fieldsThe run later terminated because Debusine work request
14057endedstatus=abortedduring remote execution. That abort occurred after this PR’s wiring was applied and exercised.Relationship to PR #54
mainCI workflow wiring so Debusine can resolve those requirements from the correct workspace.Both are required to make the Debian Debusine DKMS build path functional end-to-end.