-
Notifications
You must be signed in to change notification settings - Fork 29.8k
/
build-addons.js
58 lines (45 loc) · 1.7 KB
/
build-addons.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'use strict';
// Usage: e.g. node build-addons.js <path to node-gyp> <directory>
const child_process = require('child_process');
const path = require('path');
const fs = require('fs').promises;
const util = require('util');
const execFile = util.promisify(child_process.execFile);
const parallelization = +process.env.JOBS || require('os').cpus().length;
const nodeGyp = process.argv[2];
async function runner(directoryQueue) {
if (directoryQueue.length === 0)
return;
const dir = directoryQueue.shift();
const next = () => runner(directoryQueue);
try {
// Only run for directories that have a `binding.gyp`.
// (https://github.com/nodejs/node/issues/14843)
await fs.stat(path.join(dir, 'binding.gyp'));
} catch (err) {
if (err.code === 'ENOENT' || err.code === 'ENOTDIR')
return next();
throw err;
}
console.log(`Building addon in ${dir}`);
const { stdout, stderr } =
await execFile(process.execPath, [nodeGyp, 'rebuild', `--directory=${dir}`],
{
stdio: 'inherit',
env: { ...process.env, MAKEFLAGS: '-j1' }
});
// We buffer the output and print it out once the process is done in order
// to avoid interleaved output from multiple builds running at once.
process.stdout.write(stdout);
process.stderr.write(stderr);
return next();
}
async function main(directory) {
const directoryQueue = (await fs.readdir(directory))
.map((subdir) => path.join(directory, subdir));
const runners = [];
for (let i = 0; i < parallelization; ++i)
runners.push(runner(directoryQueue));
return Promise.all(runners);
}
main(process.argv[3]).catch((err) => setImmediate(() => { throw err; }));