-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: build addon tests in parallel
Use a JS script to build addons rather than a shell command embedded in the Makefile, because parallelizing is hard in sh and easy in JS. PR-URL: #21155 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
2 changed files
with
67 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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; })); |