Some checks failed
Publish documentation / docs (push) Failing after 1m9s
BREAKING CHANGE: Requires Node.js v22.12.0 LTS or higher. ESM-only.
83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
import { execFileSync } from 'node:child_process';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
import { appsDir, asarsDir, fixtureDir, templateApp } from './util.js';
|
|
|
|
// generates binaries from hello-world.c
|
|
// hello-world-universal, hello-world-x86_64, hello-world-arm64
|
|
const generateMachO = () => {
|
|
const src = path.resolve(fixtureDir, 'hello-world.c');
|
|
|
|
const outputFiles = ['x86_64', 'arm64'].map((arch) => {
|
|
const machO = path.resolve(appsDir, `hello-world-${arch === 'x86_64' ? 'x64' : arch}`);
|
|
execFileSync('clang', ['-arch', arch, '-o', machO, src]);
|
|
return machO;
|
|
});
|
|
|
|
execFileSync('lipo', [
|
|
...outputFiles,
|
|
'-create',
|
|
'-output',
|
|
path.resolve(appsDir, 'hello-world-universal'),
|
|
]);
|
|
};
|
|
|
|
export default async () => {
|
|
await fs.promises.rm(appsDir, { recursive: true, force: true });
|
|
await fs.promises.mkdir(appsDir, { recursive: true });
|
|
|
|
// generate mach-o binaries to be leveraged in lipo tests
|
|
generateMachO();
|
|
|
|
await templateApp('Arm64Asar.app', 'arm64', async (appPath) => {
|
|
await fs.promises.cp(
|
|
path.resolve(asarsDir, 'app.asar'),
|
|
path.resolve(appPath, 'Contents', 'Resources', 'app.asar'),
|
|
{ recursive: true, verbatimSymlinks: true },
|
|
);
|
|
});
|
|
|
|
// contains `extra-file.txt`
|
|
await templateApp('Arm64AsarExtraFile.app', 'arm64', async (appPath) => {
|
|
await fs.promises.cp(
|
|
path.resolve(asarsDir, 'app2.asar'),
|
|
path.resolve(appPath, 'Contents', 'Resources', 'app.asar'),
|
|
{ recursive: true, verbatimSymlinks: true },
|
|
);
|
|
});
|
|
|
|
await templateApp('X64Asar.app', 'x64', async (appPath) => {
|
|
await fs.promises.cp(
|
|
path.resolve(asarsDir, 'app.asar'),
|
|
path.resolve(appPath, 'Contents', 'Resources', 'app.asar'),
|
|
{ recursive: true, verbatimSymlinks: true },
|
|
);
|
|
});
|
|
|
|
await templateApp('Arm64NoAsar.app', 'arm64', async (appPath) => {
|
|
await fs.promises.cp(
|
|
path.resolve(asarsDir, 'app'),
|
|
path.resolve(appPath, 'Contents', 'Resources', 'app'),
|
|
{ recursive: true, verbatimSymlinks: true },
|
|
);
|
|
});
|
|
|
|
// contains `extra-file.txt`
|
|
await templateApp('Arm64NoAsarExtraFile.app', 'arm64', async (appPath) => {
|
|
await fs.promises.cp(
|
|
path.resolve(asarsDir, 'app2'),
|
|
path.resolve(appPath, 'Contents', 'Resources', 'app'),
|
|
{ recursive: true, verbatimSymlinks: true },
|
|
);
|
|
});
|
|
|
|
await templateApp('X64NoAsar.app', 'x64', async (appPath) => {
|
|
await fs.promises.cp(
|
|
path.resolve(asarsDir, 'app'),
|
|
path.resolve(appPath, 'Contents', 'Resources', 'app'),
|
|
{ recursive: true, verbatimSymlinks: true },
|
|
);
|
|
});
|
|
};
|