fix(ci) - remove debian:11 from CI test matrices (EOL) - #1736
Open
Venkumahanti Subhankar (V-Subhankar-infy) wants to merge 2 commits into
Open
fix(ci) - remove debian:11 from CI test matrices (EOL)#1736Venkumahanti Subhankar (V-Subhankar-infy) wants to merge 2 commits into
Venkumahanti Subhankar (V-Subhankar-infy) wants to merge 2 commits into
Conversation
Venkumahanti Subhankar (V-Subhankar-infy)
requested a lite review from Copilot
September 9, 2026 11:04
Copilot started reviewing on behalf of
Venkumahanti Subhankar (V-Subhankar-infy)
September 9, 2026 11:05
View session
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change cleanly removes an EOL base image from CI matrices without leaving any dangling exclude references or altering feature support.
Pull request overview
This PR updates the GitHub Actions CI test matrices to stop running Feature tests on debian:11, which is now EOL and causes deterministic apt-get update failures due to expired release metadata.
Changes:
- Removed
debian:11from thebaseImagematrix in the PR workflow (test-pr.yaml). - Removed
debian:11from thebaseImagematrix in the full test workflow (test-all.yaml). - Kept existing matrix
exclude:entries intact (none referenceddebian:11).
File summaries
| File | Description |
|---|---|
| .github/workflows/test-pr.yaml | Drops debian:11 from the PR test matrix to prevent permanent red CI runs. |
| .github/workflows/test-all.yaml | Drops debian:11 from the full test matrix to keep CI coverage aligned with supported base images. |
Review details
- Files reviewed: 2/2 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Venkumahanti Subhankar (V-Subhankar-infy)
marked this pull request as ready for review
September 10, 2026 02:49
Venkumahanti Subhankar (V-Subhankar-infy)
requested a review
from a team
as a code owner
September 10, 2026 02:49
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.
Problem
Every PR touching any Feature gets red
test (<feature>, debian:11)and bullseyetest-scenariosjobs.Debian 11 reached EOL on 2026-08-31. Its security archive stopped being re-signed that day, and APT release files are valid for 7 days, so the metadata expired on 2026-09-07. Feature
install.shscripts run underset -eand install apt prerequisites first, so every Feature fails identically. This is permanent, not a flake; re-running will not help.Verified 2026-09-09:
Change
CI matrices: removes
"debian:11"from thebaseImagematrix intest-pr.yamlandtest-all.yaml(noexclude:entries referenced it).test-pr-arm64.yamlalready excluded debian:11 and anticipated this EOL date, so this just makes the amd64 matrices consistent with it.Test scenarios: clears the 14 remaining bullseye/
debian:11pins across 7 Features that run intest-scenarios. Bullseye-only scenarios and their test scripts are removed (anaconda, common-utils, git); the rest are retargeted to bookworm/debian:12(azure-cli, common-utils, java, node, python).This drops CI coverage of an EOL image only. No Feature drops Debian 11 support: no
install.sh, nodevcontainer-feature.json, and no Feature version is touched.Alternatives considered
•
Acquire::Check-Valid-Until=false: disables APT freshness and signature checks repo-wide to paper over an EOL image.•
archive.debian.org: keeps CI validating an unsupported distro, and the host is rate-limited and unsuited to CI load.• Nothing: the jobs are
continue-on-error: true, so they don't block merges — but every PR still burns a full matrix leg on a guaranteed failure, and a standing red X hides real regressions in those same jobs.