mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 09:10:45 +00:00
ci: accept legacy bundled docker lane
This commit is contained in:
@@ -34,12 +34,14 @@ export function parseLaneSelection(raw) {
|
||||
if (!raw) {
|
||||
return [];
|
||||
}
|
||||
const laneAliases = new Map([["bundled-channel-deps", "bundled-channel-deps-compat"]]);
|
||||
return [
|
||||
...new Set(
|
||||
String(raw)
|
||||
.split(/[,\s]+/u)
|
||||
.map((token) => token.trim())
|
||||
.filter(Boolean),
|
||||
.filter(Boolean)
|
||||
.map((token) => laneAliases.get(token) ?? token),
|
||||
),
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user