2019-09-16 12:24:21 -04:00
|
|
|
/**
|
|
|
|
* @overview This script runs `electron-builder` with special management of code signing configuration on Windows.
|
|
|
|
* Running this script with no command line parameters should build all targets for the current platform.
|
|
|
|
* On Windows, make sure to set CSC_* or WIN_CSC_* environment variables or the NSIS build will fail.
|
|
|
|
* On Mac, the CSC_* variables are optional but will be respected if present.
|
|
|
|
* See also: https://www.electron.build/code-signing
|
|
|
|
*/
|
|
|
|
|
2019-09-11 21:46:28 -04:00
|
|
|
const {spawnSync} = require('child_process');
|
|
|
|
|
2019-09-16 12:24:21 -04:00
|
|
|
/**
|
|
|
|
* Strip any code signing configuration (CSC) from a set of environment variables.
|
|
|
|
* @param {object} environment - a collection of environment variables which might include code signing configuration.
|
|
|
|
* @returns {object} - a collection of environment variables which does not include code signing configuration.
|
|
|
|
*/
|
2019-09-11 21:46:28 -04:00
|
|
|
const stripCSC = function (environment) {
|
|
|
|
const {
|
|
|
|
CSC_LINK: _CSC_LINK,
|
|
|
|
CSC_KEY_PASSWORD: _CSC_KEY_PASSWORD,
|
|
|
|
WIN_CSC_LINK: _WIN_CSC_LINK,
|
|
|
|
WIN_CSC_KEY_PASSWORD: _WIN_CSC_KEY_PASSWORD,
|
|
|
|
...strippedEnvironment
|
|
|
|
} = environment;
|
|
|
|
return strippedEnvironment;
|
|
|
|
};
|
|
|
|
|
2019-09-16 12:24:21 -04:00
|
|
|
/**
|
|
|
|
* @returns {string} - an `electron-builder` flag to build for the current platform, based on `process.platform`.
|
|
|
|
*/
|
2019-09-11 21:46:28 -04:00
|
|
|
const getPlatformFlag = function () {
|
|
|
|
switch (process.platform) {
|
|
|
|
case 'win32': return '--windows';
|
|
|
|
case 'darwin': return '--macos';
|
|
|
|
case 'linux': return '--linux';
|
|
|
|
}
|
|
|
|
throw new Error(`Could not determine platform flag for platform: ${process.platform}`);
|
2019-09-16 12:24:21 -04:00
|
|
|
};
|
2019-09-11 21:46:28 -04:00
|
|
|
|
2019-09-16 12:24:21 -04:00
|
|
|
/**
|
|
|
|
* Run `electron-builder` once to build one or more target(s).
|
|
|
|
* @param {string} targetGroup - the target(s) to build in this pass.
|
|
|
|
* If the `targetGroup` is `'nsis'` then the environment must contain code-signing config (CSC_* or WIN_CSC_*).
|
|
|
|
* If the `targetGroup` is `'appx'` then code-signing config will be stripped from the environment if present.
|
|
|
|
*/
|
2019-09-11 21:46:28 -04:00
|
|
|
const runBuilder = function (targetGroup) {
|
|
|
|
// the appx build fails if CSC_* or WIN_CSC_* variables are set
|
|
|
|
const shouldStripCSC = (targetGroup === 'appx');
|
|
|
|
const childEnvironment = shouldStripCSC ? stripCSC(process.env) : process.env;
|
|
|
|
if ((targetGroup === 'nsis') && !(childEnvironment.CSC_LINK || childEnvironment.WIN_CSC_LINK)) {
|
|
|
|
throw new Error(`NSIS build requires CSC_LINK or WIN_CSC_LINK`);
|
|
|
|
}
|
|
|
|
const platformFlag = getPlatformFlag();
|
|
|
|
const command = `electron-builder ${platformFlag} ${targetGroup}`;
|
|
|
|
console.log(`running: ${command}`);
|
2020-01-14 17:10:22 -05:00
|
|
|
const result = spawnSync(command, {
|
2019-09-11 21:46:28 -04:00
|
|
|
env: childEnvironment,
|
|
|
|
shell: true,
|
|
|
|
stdio: 'inherit'
|
|
|
|
});
|
2020-01-14 17:10:22 -05:00
|
|
|
if (result.error) {
|
|
|
|
throw result.error;
|
|
|
|
}
|
|
|
|
if (result.signal) {
|
|
|
|
throw new Error(`Child process terminated due to signal ${result.signal}`);
|
|
|
|
}
|
|
|
|
if (result.status) {
|
|
|
|
throw new Error(`Child process returned status code ${result.status}`);
|
|
|
|
}
|
2019-09-11 21:46:28 -04:00
|
|
|
};
|
|
|
|
|
2019-09-16 12:24:21 -04:00
|
|
|
/**
|
|
|
|
* @returns {Array.<string>} - the default list of target groups on this platform. Each item in the array represents
|
|
|
|
* one call to `runBuilder` for one or more build target(s).
|
|
|
|
*/
|
2019-09-11 21:46:28 -04:00
|
|
|
const calculateTargets = function () {
|
|
|
|
switch (process.platform) {
|
|
|
|
case 'win32':
|
|
|
|
// run in two passes so we can skip signing the appx
|
|
|
|
return ['nsis', 'appx'];
|
|
|
|
case 'darwin':
|
2020-01-16 15:35:37 -05:00
|
|
|
// Running 'dmg' and 'mas' in the same pass causes electron-builder to skip signing the non-MAS app copy.
|
|
|
|
// Running them as separate passes means they both get signed.
|
|
|
|
// Seems like a bug in electron-builder...
|
|
|
|
return ['dmg', 'mas'];
|
2019-09-11 21:46:28 -04:00
|
|
|
}
|
|
|
|
throw new Error(`Could not determine targets for platform: ${process.platform}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: allow user to specify targets? We could theoretically build NSIS on Mac, for example.
|
|
|
|
const targets = calculateTargets();
|
|
|
|
for (const targetGroup of targets) {
|
|
|
|
runBuilder(targetGroup);
|
|
|
|
}
|