Re-enable sid container rebuild in CI - #44
Open
Simon Beaudoin (simonbeaudoin0935) wants to merge 4 commits into
Open
Re-enable sid container rebuild in CI#44Simon Beaudoin (simonbeaudoin0935) wants to merge 4 commits into
Simon Beaudoin (simonbeaudoin0935) wants to merge 4 commits 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. |
Remove temporary rebuild skip logic so rebuild mode checks all discovered Debian and Ubuntu Dockerfiles again. Restore sid in the container workflow's dummy-package validation loop and Debian image push list. Signed-off-by: Simon Beaudoin <sbeaudoi@qti.qualcomm.com>
Align rebuild-all behavior with the supported distro set already exposed through --distro choices. This keeps temporary skip-list logic removed while preventing unsupported suites like questing from breaking the sweep. Signed-off-by: Simon Beaudoin <sbeaudoi@qti.qualcomm.com>
Simon Beaudoin (simonbeaudoin0935)
force-pushed
the
fix/re-enable-sid-container-build
branch
from
July 28, 2026 17:35
35ebbd8 to
bad7622
Compare
Add Debian forky as a supported suite in docker_deb_build, container workflow validation, and docker image upload paths. Introduce sid best-effort handling in container-build-and-upload: if sid image build or validation fails, continue the run and skip sid push while keeping other suites blocking. Signed-off-by: Simon Beaudoin <sbeaudoi@qti.qualcomm.com>
Forky currently does not expose the gh package in default apt metadata. Guard the package install step to drop gh when unavailable so the forky image can still build with the remaining base tooling. Signed-off-by: Simon Beaudoin <sbeaudoi@qti.qualcomm.com>
Keerthi Gowda (keerthi-go)
approved these changes
Jul 28, 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.
Summary
docker_deb_build.pyrebuild modesidin the Debian image validation loop ofcontainer-build-and-upload.ymlsidpush in the Debian image upload listValidation
python3 -m py_compile docker_deb_build.py create_data_tar.py docker_rpm_build.pypython3 docker_deb_build.py --helpContext
This reverts the temporary sid exclusion introduced in PR #42 and removes the
rebuild skip-list so all discovered distros are evaluated during rebuild.