test: add update migration package gate

This commit is contained in:
Peter Steinberger
2026-05-02 00:34:28 +01:00
parent 3f4ca7c53b
commit 682e05532d
16 changed files with 349 additions and 14 deletions

View File

@@ -73,6 +73,7 @@ export const UPGRADE_SURVIVOR_SCENARIOS = [
"base",
"feishu-channel",
"bootstrap-persona",
"plugin-deps-cleanup",
"tilde-log-path",
"versioned-runtime-deps",
];
@@ -153,7 +154,7 @@ export function expandUpgradeSurvivorBaselineLanes(poolLanes, rawBaselineSpecs,
return poolLanes;
}
return poolLanes.flatMap((poolLane) => {
if (poolLane.name !== "published-upgrade-survivor") {
if (poolLane.name !== "published-upgrade-survivor" && poolLane.name !== "update-migration") {
return [poolLane];
}
const matrixBaselines = baselineSpecs.length > 0 ? baselineSpecs : [undefined];