mirror of
https://github.com/nexu-io/open-design.git
synced 2026-07-07 06:34:10 +08:00
* Fix Windows smoke launcher payload layout
* Harden release-beta-s runner probe
* Use cmd shell for release-beta-s probe
* Add win beta build script for self-hosted lane
* Keep release-beta-s checkout lightweight
* Use explicit local beta version for release-beta-s
* Install dependencies in beta build script
* Repair Electron dist before Windows beta build
* Add release-beta-s timings and diagnostics
* Polish release-beta-s observability guardrails
* Trace tools-pack cache materialization
* Reuse materialized workspace build cache
* Trace Windows packaging segments
* Trace Windows archive process details
* Reuse installer unpacked materialization
* Preserve reusable Windows unpacked projection
* Add fast smoke telemetry for self-hosted beta
* Cache Windows archive outputs for beta lane
* Tighten fast Windows smoke lane
* Scope Windows beta artifact reporting by target
* Clean stale Windows target artifacts
* Wire Windows Authenticode signing
* Expose self-hosted beta validation modes
* Add core Windows smoke profile
* Decouple core smoke from updater fixture version
* Trace Windows smoke lifecycle steps
* Skip unpacked materialization on NSIS cache hit
* Add Nexu S3 beta publisher
* Harden self-hosted Windows beta lane
* Use Windows PowerShell for publish probe
* Run publish probe via repo script
* Require explicit self-hosted S3 public origin
* Run real installer acceptance for external feeds
* Skip ready-prompt checks for external feeds
* Relax optional self-hosted update inputs
* Tolerate BOM in self-hosted publish probe
* Converge self-hosted beta metadata and signing flow
* Run self-hosted beta metadata prep on the runner lane
* Use Windows PowerShell for self-hosted beta metadata checks
* Bypass execution policy in self-hosted beta metadata checks
* Split self-hosted beta metadata publish
* Suppress mc output in beta publish helpers
* Split Windows NSIS payload cache layers
* Require fresh tool dist metadata
* Preserve Windows overlay payload paths
* Default beta-s gate to core
* Optimize win beta packaging reuse
* simplify windows full smoke lifecycle
* preserve onboarding state after windows upgrade smoke
* fix windows tools-pack test portability
* recover stale tools-pack locks
* Allow auto signing fallback for beta builds
* Add self-hosted beta mac arm64 lane
* Quote self-hosted signing choices
* Run self-hosted beta metadata on mac lane
* Use shallow metadata checkout on self-hosted beta
* Use sparse beta metadata checkout
* Make mac release profile bash-compatible
* Allow file sparse metadata checkout
* Isolate self-hosted metadata checkout
* Clear sparse skip-worktree before mac build
* Isolate self-hosted mac build checkout
* Run self-hosted beta publish without aws cli
* Use unsigned beta prefix for mixed platform publish
* Sparse checkout self-hosted beta publish
* Publish mac beta platform before metadata
* Pass mac publish release profile
* Probe mac signing keychain import
* Expand mac signing preflight variants
* Use sudo keychain helper for self-hosted mac signing
* Route self-hosted mac codesign through sudo wrapper
* Normalize mac signing identity name
* Harden self-hosted mac notarization
* Optimize self-hosted mac release cache
* Fix mac signing helper cleanup
* Retry transient mac notarization uploads
* Keep mac notarization fail-fast
* Reduce mac symlink diagnostics noise
* Normalize self-hosted beta platform inputs
* chore: bump beta base version to 0.9.1
* chore: tune release tools-pack cache retention
* test: add temporary cache validation marker
* chore: key windows nsis base payload by content
* Revert "test: add temporary cache validation marker"
This reverts commit e8487bfd3e.
* chore: probe windows nsis payload cache before materializing
* chore: align self-hosted beta smoke modes
* chore: skip mac smoke report upload when disabled
* chore: default self-hosted beta to publish both platforms
* chore: make beta signing modes explicit
* Add release report artifacts and metatool metadata
* Fix Windows release report zip publishing
* Remove artifact handoff from release beta self-hosted lane
* Fix release beta merge follow-ups
* Fix release beta install regressions
* Restore web build dependencies
* Route Windows beta downloads through mirrors
* Use PowerShell 7 for Windows beta lane
* Fix release beta preflight gates
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Fix Windows beta smoke update reuse
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Fix release beta review follow-ups
* Refresh Nix pnpm dependency hashes
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Fix Windows signtool fallback resolution
* Reject stale beta platform manifests
* Validate beta platform manifest run identity
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Validate beta manifest commit identity
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Allow beta metadata publish reruns
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Build tools-pack fully in beta Windows bootstrap
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Emit r2 metadata for Windows beta publish
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Stabilize beta publish browser test
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Stabilize Windows beta metadata smoke test
Generated-By: looper 0.9.4 (runner=fixer, agent=codex)
* Restore multi-platform Vela CLI package
* Refresh Nix pnpm dependency hashes
Generated-By: looper 0.9.5 (runner=fixer, agent=codex)
---------
Co-authored-by: Looper <looper@noreply.github.com>
75 lines
2.5 KiB
Bash
75 lines
2.5 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cache_root="${CACHE_ROOT:-$RUNNER_TEMP/tools-pack-cache}"
|
|
if [ ! -d "$cache_root" ]; then
|
|
echo "tools-pack cache root does not exist; nothing to prune"
|
|
exit 0
|
|
fi
|
|
|
|
rm -rf "$cache_root/locks"
|
|
CACHE_ROOT="$cache_root" node --input-type=module <<'NODE'
|
|
import { rmSync, statSync, readdirSync } from "node:fs";
|
|
import { join } from "node:path";
|
|
|
|
const cacheRoot = process.env.CACHE_ROOT;
|
|
const entryRoot = join(cacheRoot, "entries");
|
|
const maxBytes = Number(process.env.TOOLS_PACK_CACHE_MAX_BYTES || 16 * 1024 * 1024 * 1024);
|
|
const keepPerNode = Number(process.env.TOOLS_PACK_CACHE_KEEP_PER_NODE || 5);
|
|
const entries = [];
|
|
|
|
function directoryBytes(path) {
|
|
let total = 0;
|
|
for (const entry of readdirSync(path, { withFileTypes: true })) {
|
|
const child = join(path, entry.name);
|
|
if (entry.isDirectory()) total += directoryBytes(child);
|
|
else total += statSync(child).size;
|
|
}
|
|
return total;
|
|
}
|
|
|
|
try {
|
|
for (const node of readdirSync(entryRoot, { withFileTypes: true })) {
|
|
if (!node.isDirectory()) continue;
|
|
const nodeRoot = join(entryRoot, node.name);
|
|
for (const entry of readdirSync(nodeRoot, { withFileTypes: true })) {
|
|
if (!entry.isDirectory()) continue;
|
|
const path = join(nodeRoot, entry.name);
|
|
const size = directoryBytes(path);
|
|
entries.push({ node: node.name, path, size, mtimeMs: statSync(path).mtimeMs });
|
|
}
|
|
}
|
|
} catch {
|
|
console.log("tools-pack cache entries root does not exist; nothing to prune");
|
|
process.exit(0);
|
|
}
|
|
|
|
const rankByPath = new Map();
|
|
for (const node of new Set(entries.map((entry) => entry.node))) {
|
|
entries
|
|
.filter((entry) => entry.node === node)
|
|
.sort((left, right) => right.mtimeMs - left.mtimeMs)
|
|
.forEach((entry, index) => rankByPath.set(entry.path, index + 1));
|
|
}
|
|
|
|
entries.sort((left, right) => {
|
|
const leftProtected = (rankByPath.get(left.path) ?? Number.MAX_SAFE_INTEGER) <= keepPerNode ? 0 : 1;
|
|
const rightProtected = (rankByPath.get(right.path) ?? Number.MAX_SAFE_INTEGER) <= keepPerNode ? 0 : 1;
|
|
if (leftProtected !== rightProtected) return leftProtected - rightProtected;
|
|
return right.mtimeMs - left.mtimeMs;
|
|
});
|
|
let keptBytes = 0;
|
|
let removedBytes = 0;
|
|
let removedCount = 0;
|
|
for (const entry of entries) {
|
|
if (keptBytes + entry.size <= maxBytes) {
|
|
keptBytes += entry.size;
|
|
continue;
|
|
}
|
|
rmSync(entry.path, { force: true, recursive: true });
|
|
removedBytes += entry.size;
|
|
removedCount += 1;
|
|
}
|
|
console.log(`keptBytes=${keptBytes} removedBytes=${removedBytes} removedCount=${removedCount} maxBytes=${maxBytes} keepPerNode=${keepPerNode}`);
|
|
NODE
|