This commit is contained in:
2025-09-13 22:32:49 -05:00
parent fc9a79e833
commit 8ec1102359

View File

@@ -61,7 +61,7 @@ const getBucketFiles = async (folderName) => {
const contents = Array.isArray(data?.Contents) ? data.Contents : []; const contents = Array.isArray(data?.Contents) ? data.Contents : [];
// Normalize + newest-first // normalize objects
const ret = contents const ret = contents
.filter((obj) => obj.Key !== folderKey) .filter((obj) => obj.Key !== folderKey)
.map((obj) => { .map((obj) => {
@@ -80,7 +80,7 @@ const getBucketFiles = async (folderName) => {
second: "2-digit", second: "2-digit",
}) })
.replace(/,/g, ""), .replace(/,/g, ""),
sort: d.getTime() || 0, sort: Number.isFinite(d.getTime()) ? d.getTime() : 0,
name: (obj.Key || "").replace(folderKey, ""), name: (obj.Key || "").replace(folderKey, ""),
key: obj.Key || "", key: obj.Key || "",
}; };
@@ -90,35 +90,54 @@ const getBucketFiles = async (folderName) => {
const byKey = Object.fromEntries(ret.map((r) => [r.key, r])); const byKey = Object.fromEntries(ret.map((r) => [r.key, r]));
const TAR = ".tar.gz"; const TAR = ".tar.gz";
// Keep only tar anchors (apply nightly retention) // helpers
const sidecars = (k) => [k + ".sha256", k + ".sig"];
const tarBase = (name) =>
name.endsWith(TAR) ? name.slice(0, -TAR.length) : name;
const parsePlatArchFromTarName = (name) => {
// name is the *tar* file's name, strip ".tar.gz" first
const base = tarBase(name);
const parts = base.split("_"); // 0=product,1=version,2=build,3=platform,4=arch
const platform = (parts[3] || "").toLowerCase();
// arch is clean now (no extension)
let arch = (parts[4] || "").toLowerCase();
if (arch === "arm64") arch = "aarch64";
if (arch === "x86_64") arch = "x86-64";
return {
base,
platform,
arch,
buildId: `${parts[0]}|${parts[1]}|${parts[2]}`,
};
};
// anchors
const tars = ret.filter((it) => it.name.endsWith(TAR)); const tars = ret.filter((it) => it.name.endsWith(TAR));
// nightly retention (per product_platform_arch)
const keepTarKeys = new Set(); const keepTarKeys = new Set();
const itemCount = {}; const itemCount = {};
for (const t of tars) { for (const t of tars) {
const { platform, arch } = parsePlatArchFromTarName(t.name);
if (folderName === "nightly") { if (folderName === "nightly") {
const parts = t.name.split("_"); // 0=product,1=version,2=build,3=platform,4=arch const groupId = `${t.name.split("_")[0]}_${platform}_${arch}`;
const groupId = `${parts[0]}_${parts[3]}_${parts[4]}`;
itemCount[groupId] = itemCount[groupId] || 0; itemCount[groupId] = itemCount[groupId] || 0;
if (++itemCount[groupId] <= 3) { if (++itemCount[groupId] <= 3) {
keepTarKeys.add(t.key); keepTarKeys.add(t.key);
} else { } else {
// mark tar + sidecars old
if (!oldItems.includes(t.key)) { if (!oldItems.includes(t.key)) {
oldItems.push(t.key, t.key + ".sha256", t.key + ".sig"); oldItems.push(t.key, ...sidecars(t.key));
} }
// companions old if (platform === "windows") {
if (parts[3] === "windows") {
const setupKey = t.key.slice(0, -TAR.length) + "_setup.exe"; const setupKey = t.key.slice(0, -TAR.length) + "_setup.exe";
if (byKey[setupKey] && !oldItems.includes(setupKey)) { if (byKey[setupKey] && !oldItems.includes(setupKey)) {
oldItems.push(setupKey, setupKey + ".sha256", setupKey + ".sig"); oldItems.push(setupKey, ...sidecars(setupKey));
} }
} }
if (parts[3] === "darwin") { if (platform === "darwin") {
const dmgKey = t.key.slice(0, -TAR.length) + ".dmg"; const dmgKey = t.key.slice(0, -TAR.length) + ".dmg";
if (byKey[dmgKey] && !oldItems.includes(dmgKey)) { if (byKey[dmgKey] && !oldItems.includes(dmgKey)) {
oldItems.push(dmgKey, dmgKey + ".sha256", dmgKey + ".sig"); oldItems.push(dmgKey, ...sidecars(dmgKey));
} }
} }
} }
@@ -127,70 +146,62 @@ const getBucketFiles = async (folderName) => {
} }
} }
// Build -> platform/arch -> tar // group by build (0,1,2) -> platform/arch -> tar
const builds = new Map(); // buildId -> { maxSort, map: Map("platform|arch" -> tarItem) } const builds = new Map(); // buildId -> { maxSort, map: Map("platform|arch" -> tarItem) }
for (const t of tars) { for (const t of tars) {
if (!keepTarKeys.has(t.key)) continue; if (!keepTarKeys.has(t.key)) continue;
const parts = t.name.split("_"); const { platform, arch, buildId } = parsePlatArchFromTarName(t.name);
const buildId = `${parts[0]}|${parts[1]}|${parts[2]}`; // parts 0..2 const keyPA = `${platform}|${arch}`;
const platform = (parts[3] || "").toLowerCase();
const arch = (parts[4] || "").toLowerCase();
const platArch = `${platform}|${arch}`;
if (!builds.has(buildId)) if (!builds.has(buildId))
builds.set(buildId, { maxSort: t.sort, map: new Map() }); builds.set(buildId, { maxSort: t.sort, map: new Map() });
const bucket = builds.get(buildId); const bucket = builds.get(buildId);
bucket.maxSort = Math.max(bucket.maxSort, t.sort); bucket.maxSort = Math.max(bucket.maxSort, t.sort);
bucket.map.set(platArch, t); bucket.map.set(keyPA, t);
} }
// Sort builds newest-first // order builds newest-first
const orderedBuilds = Array.from(builds.entries()).sort( const orderedBuilds = Array.from(builds.entries()).sort(
(a, b) => b[1].maxSort - a[1].maxSort, (a, b) => b[1].maxSort - a[1].maxSort,
); );
// Explicit platform/arch order // explicit iteration order
const platformOrder = ["darwin", "windows", "linux"]; const platforms = ["darwin", "windows", "linux"];
const archOrder = ["aarch64", "arm64", "x86-64", "x86_64"]; const archs = ["aarch64", "x86-64"]; // normalized above
const out = []; const out = [];
for (const [, bucket] of orderedBuilds) { for (const [, bucket] of orderedBuilds) {
for (const p of platformOrder) { for (const p of platforms) {
for (const a of archOrder) { for (const a of archs) {
const keyPA = `${p}|${a}`; const t = bucket.map.get(`${p}|${a}`);
const tar = bucket.map.get(keyPA); if (!t) continue;
if (!tar) continue;
const base = tar.key.slice(0, -TAR.length); const base = t.key.slice(0, -TAR.length);
// 1) DMG group (darwin only) // 1) .dmg (darwin only)
if (p === "darwin") { if (p === "darwin") {
const dmgKey = base + ".dmg"; const dmgKey = base + ".dmg";
const dmg = byKey[dmgKey]; const dmg = byKey[dmgKey];
if (dmg) { if (dmg) {
out.push(dmg); out.push(dmg);
if (byKey[dmgKey + ".sha256"]) for (const sk of sidecars(dmgKey))
out.push(byKey[dmgKey + ".sha256"]); if (byKey[sk]) out.push(byKey[sk]);
if (byKey[dmgKey + ".sig"]) out.push(byKey[dmgKey + ".sig"]);
} }
} }
// 2) SETUP group (windows only) // 2) _setup.exe (windows only)
if (p === "windows") { if (p === "windows") {
const setupKey = base + "_setup.exe"; const setupKey = base + "_setup.exe";
const setup = byKey[setupKey]; const setup = byKey[setupKey];
if (setup) { if (setup) {
out.push(setup); out.push(setup);
if (byKey[setupKey + ".sha256"]) for (const sk of sidecars(setupKey))
out.push(byKey[setupKey + ".sha256"]); if (byKey[sk]) out.push(byKey[sk]);
if (byKey[setupKey + ".sig"]) out.push(byKey[setupKey + ".sig"]);
} }
} }
// 3) TAR group (always) // 3) .tar.gz
out.push(tar); out.push(t);
if (byKey[tar.key + ".sha256"]) out.push(byKey[tar.key + ".sha256"]); for (const sk of sidecars(t.key)) if (byKey[sk]) out.push(byKey[sk]);
if (byKey[tar.key + ".sig"]) out.push(byKey[tar.key + ".sig"]);
} }
} }
} }