fix(ci): add baseline CPU variant binaries for legacy hardware support

Closes #2121
This commit is contained in:
YeonGyu-Kim
2026-02-26 21:00:31 +09:00
parent 502bcf76dd
commit 2eae64f1b2
8 changed files with 250 additions and 51 deletions
+14
View File
@@ -0,0 +1,14 @@
export declare function getPlatformPackage(options: {
platform: string;
arch: string;
libcFamily?: string | null;
}): string;
export declare function getPlatformPackageCandidates(options: {
platform: string;
arch: string;
libcFamily?: string | null;
preferBaseline?: boolean;
}): string[];
export declare function getBinaryPath(pkg: string, platform: string): string;