pcbjam/scripts/deploy/wasm-cache-hash.mjs

152 lines
6.4 KiB
JavaScript
Raw Normal View History

#!/usr/bin/env node
// Computes the "sc" (source-content) hash for the KiCad-WASM output cache key
// in .github/workflows/ci-ubicloud.yml.
//
// The cache key is:
// kwasm-<os>-bin<binaryen-ver><opt-level>-k<kicad-sha>-wx<wx-sha>-sc<HASH>-e<epoch>
//
// The kicad/wx submodule SHAs already capture the *sources*. This hash captures
// the *build logic* that shapes the wasm bytes but lives outside those
// submodules — the asyncify/finalize/dyncall/wasm-opt host steps, the per-tool
// compile scripts, the dependency builds, and the Docker toolchain. Those were
// deliberately dropped from the key's hashFiles() (so routine script edits don't
// trigger a 1-2h rebuild); folding the *output-determining* subset back in here
// keeps the cache correct while leaving the rest under the manual .ci-cache-epoch
// / [no-cache] controls.
//
// The hash is content-based and order-independent: it builds a manifest of
// `<sha256(content)> <repo-relative-path>` lines, sorts them, and hashes the
// manifest. Identical on macOS (dev) and Linux (CI) given a normal LF checkout,
// so you can predict cache hits locally.
//
// This script hashes ITSELF (and therefore the INPUTS list below) too, so
// editing it busts the cache — intended: a change here means the set of
// cache-invalidating inputs changed.
//
// Usage:
// node scripts/deploy/wasm-cache-hash.mjs # full hex sha256 -> stdout
// node scripts/deploy/wasm-cache-hash.mjs --short # 16-char prefix
// node scripts/deploy/wasm-cache-hash.mjs --short=12 # N-char prefix
// node scripts/deploy/wasm-cache-hash.mjs --manifest # per-file lines + total (stderr), hash on stdout
//
// In CI (the `keys` step, after checkout + setup-node):
// echo "sc=$(node scripts/deploy/wasm-cache-hash.mjs)" >> "$GITHUB_OUTPUT"
//
// MAINTENANCE: to add or remove inputs, edit INPUTS below — that is the only
// place the set is defined.
import { createHash } from "node:crypto";
import { readFileSync, readdirSync, existsSync, statSync } from "node:fs";
import { fileURLToPath } from "node:url";
import { join, relative, sep } from "node:path";
// --- The inputs that determine the cached wasm bytes -------------------------
// Each entry is one of:
// { file: "<repo-relative path>" } a single file (must exist)
// { dir: "<repo-relative dir>" } every file under the dir, recursive
// { dir: "<repo-relative dir>", match: RE } files under the dir whose BASENAME matches RE, recursive
// Paths are POSIX, relative to the repo root. This script always adds itself.
const INPUTS = [
// Host-side post-processing — these directly shape the final wasm bytes.
{ file: "scripts/common/apply-asyncify.sh" },
{ file: "scripts/common/apply-finalize.sh" },
{ file: "scripts/common/inject-dyncall-shims.sh" },
fix(wasm-eh): build wasm-emscripten-finalize from the Binaryen submodule (unbreak CI) The native-EH migration pointed apply-finalize.sh at emsdk's bundled wasm-emscripten-finalize (${EMSDK:-tools/emsdk}/upstream/bin), which exists on a dev machine (tools/emsdk persists from a prior build) but never on the ephemeral CI host — emsdk lives only inside the Docker image, and nothing on the host post-process path provisions it. So the host post-process died at finalize for every app once the binaryen-SHA cache re-key forced it to actually run. (Not the missing-ninja theory — ninja was installed; the run never reached the wasm-opt build, which is downstream of finalize.) Finish the "Binaryen submodule everywhere" migration: build-wasm-opt.sh now also builds wasm-emscripten-finalize, and apply-finalize.sh takes it from that build (next to wasm-opt). The host post-process is now emsdk-free (dyncall=node, finalize+asyncify=submodule v130) and finalize/wasm-opt share one Binaryen version (previously finalize was emsdk's v121, wasm-opt the submodule's v130). get-wasm-opt.sh stays for bench only; dropped it from the wasm cache key and added build-wasm-opt.sh. Also surface the from-source Binaryen build as a "Build Binaryen" stage in build-monitor.sh (it had no marker), emitted at the pipelined pre-warm sites. Validated: a clean from-scratch `docker/build.sh calculator --build-deps` (deps + compile + finalize via the submodule binary + asyncify + -O2) succeeded end-to-end; finalize resolved to build-wasm/tools/binaryen-hoist-build/bin. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-30 11:55:52 +02:00
// The submodule build that provides BOTH host wasm-opt and wasm-emscripten-finalize.
// (get-wasm-opt.sh is no longer on the build path — bench-only — so it no longer
// belongs in the cache key.)
{ file: "scripts/binaryen-hoist-pass/build-wasm-opt.sh" },
// Per-tool compile recipes (compile flags / emcc link options).
{ dir: "scripts/kicad", match: /^build-.*\.sh$/ },
// Dependency builds (boost/cairo/occ/... — the sysroot the wasm links against).
{ dir: "scripts/deps" },
// Docker toolchain (base image, emsdk, build driver).
{ file: "docker/Dockerfile" },
{ file: "docker/build.sh" },
];
// --- helpers -----------------------------------------------------------------
const ROOT = fileURLToPath(new URL("../..", import.meta.url)); // scripts/deploy -> repo root
const toPosix = (p) => p.split(sep).join("/");
const sha256hex = (buf) => createHash("sha256").update(buf).digest("hex");
// Recursively collect repo-relative file paths under an absolute dir. Skips
// dotfiles/dot-dirs (no hidden files are intended inputs) and follows the
// optional basename matcher.
function walk(absDir, match) {
const out = [];
for (const ent of readdirSync(absDir, { withFileTypes: true })) {
if (ent.name.startsWith(".")) continue;
const abs = join(absDir, ent.name);
if (ent.isDirectory()) {
out.push(...walk(abs, match));
} else if (ent.isFile()) {
if (match && !match.test(ent.name)) continue;
out.push(toPosix(relative(ROOT, abs)));
}
}
return out;
}
// --- resolve the file set ----------------------------------------------------
const files = new Set();
for (const entry of INPUTS) {
if (entry.file) {
const abs = join(ROOT, entry.file);
if (!existsSync(abs) || !statSync(abs).isFile()) {
// Hard error: a listed file vanished (renamed/moved). Silently dropping it
// would weaken the key and serve a stale cache.
console.error(`wasm-cache-hash: required input missing: ${entry.file}`);
process.exit(1);
}
files.add(toPosix(entry.file));
} else if (entry.dir) {
const abs = join(ROOT, entry.dir);
if (!existsSync(abs) || !statSync(abs).isDirectory()) {
console.error(`wasm-cache-hash: required input dir missing: ${entry.dir}`);
process.exit(1);
}
const found = walk(abs, entry.match);
if (found.length === 0) {
// Non-fatal: a dir/matcher that yields nothing is suspicious but
// deterministic. Warn so a bad matcher doesn't go unnoticed.
console.error(
`wasm-cache-hash: warning: no files for ${entry.dir}` +
(entry.match ? ` matching ${entry.match}` : "")
);
}
for (const f of found) files.add(f);
}
}
// Always include this script (and thus the INPUTS list).
files.add(toPosix(relative(ROOT, fileURLToPath(import.meta.url))));
// --- build the manifest and hash it ------------------------------------------
const manifest = [...files]
.sort()
.map((rel) => `${sha256hex(readFileSync(join(ROOT, rel)))} ${rel}`)
.join("\n");
const hash = sha256hex(Buffer.from(manifest, "utf8"));
// --- output ------------------------------------------------------------------
const args = process.argv.slice(2);
if (args.includes("--help") || args.includes("-h")) {
console.error(readFileSync(fileURLToPath(import.meta.url), "utf8").split("\n\n")[1]);
process.exit(0);
}
if (args.includes("--manifest")) {
// Manifest to stderr so stdout stays a clean, capturable hash.
console.error(manifest);
console.error(`-- ${files.size} files --`);
}
const shortArg = args.find((a) => a === "--short" || a.startsWith("--short="));
const out = shortArg
? hash.slice(0, Number(shortArg.split("=")[1]) || 16)
: hash;
process.stdout.write(out + "\n");