2022-06-14 14:37:10 +08:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
2024-04-30 20:57:13 +08:00
|
|
|
const fs = require('fs');
|
|
|
|
const path = require('path');
|
|
|
|
const os = require('os');
|
2022-06-14 14:37:10 +08:00
|
|
|
const cp = require('child_process');
|
|
|
|
const { dirs } = require('./dirs');
|
|
|
|
const { setupBuildYarnrc } = require('./setupBuildYarnrc');
|
|
|
|
const yarn = process.platform === 'win32' ? 'yarn.cmd' : 'yarn';
|
2024-04-30 20:57:13 +08:00
|
|
|
const root = path.dirname(path.dirname(__dirname));
|
|
|
|
|
|
|
|
function run(command, args, opts) {
|
|
|
|
console.log('$ ' + command + ' ' + args.join(' '));
|
|
|
|
|
|
|
|
const result = cp.spawnSync(command, args, opts);
|
|
|
|
|
|
|
|
if (result.error) {
|
|
|
|
console.error(`ERR Failed to spawn process: ${result.error}`);
|
|
|
|
process.exit(1);
|
|
|
|
} else if (result.status !== 0) {
|
|
|
|
console.error(`ERR Process exited with code: ${result.status}`);
|
|
|
|
process.exit(result.status);
|
|
|
|
}
|
|
|
|
}
|
2022-06-14 14:37:10 +08:00
|
|
|
|
|
|
|
/**
|
2024-04-30 20:57:13 +08:00
|
|
|
* @param {string} dir
|
2022-06-14 14:37:10 +08:00
|
|
|
* @param {*} [opts]
|
|
|
|
*/
|
2024-04-30 20:57:13 +08:00
|
|
|
function yarnInstall(dir, opts) {
|
|
|
|
opts = {
|
|
|
|
env: { ...process.env },
|
|
|
|
...(opts ?? {}),
|
|
|
|
cwd: dir,
|
|
|
|
stdio: 'inherit',
|
|
|
|
};
|
2022-06-14 14:37:10 +08:00
|
|
|
|
|
|
|
const raw = process.env['npm_config_argv'] || '{}';
|
|
|
|
const argv = JSON.parse(raw);
|
|
|
|
const original = argv.original || [];
|
|
|
|
const args = original.filter(arg => arg === '--ignore-optional' || arg === '--frozen-lockfile' || arg === '--check-files');
|
2024-04-30 20:57:13 +08:00
|
|
|
|
2022-06-14 14:37:10 +08:00
|
|
|
if (opts.ignoreEngines) {
|
|
|
|
args.push('--ignore-engines');
|
|
|
|
delete opts.ignoreEngines;
|
|
|
|
}
|
|
|
|
|
2024-04-30 20:57:13 +08:00
|
|
|
if (process.env['VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME'] && /^(.build\/distro\/npm\/)?remote$/.test(dir)) {
|
|
|
|
const userinfo = os.userInfo();
|
|
|
|
console.log(`Installing dependencies in ${dir} inside container ${process.env['VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME']}...`);
|
2022-06-14 14:37:10 +08:00
|
|
|
|
2024-04-30 20:57:13 +08:00
|
|
|
opts.cwd = root;
|
|
|
|
if (process.env['npm_config_arch'] === 'arm64') {
|
|
|
|
run('sudo', ['docker', 'run', '--rm', '--privileged', 'multiarch/qemu-user-static', '--reset', '-p', 'yes'], opts);
|
|
|
|
}
|
|
|
|
run('sudo', ['docker', 'run', '-e', 'GITHUB_TOKEN', '-e', 'npm_config_arch', '-v', `${process.env['VSCODE_HOST_MOUNT']}:/root/vscode`, '-v', `${process.env['VSCODE_HOST_MOUNT']}/.build/.netrc:/root/.netrc`, process.env['VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME'], 'yarn', '--cwd', dir, ...args], opts);
|
|
|
|
run('sudo', ['chown', '-R', `${userinfo.uid}:${userinfo.gid}`, `${dir}/node_modules`], opts);
|
|
|
|
} else {
|
|
|
|
console.log(`Installing dependencies in ${dir}...`);
|
|
|
|
run(yarn, args, opts);
|
2022-06-14 14:37:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let dir of dirs) {
|
|
|
|
|
|
|
|
if (dir === '') {
|
|
|
|
// `yarn` already executed in root
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2024-04-30 20:57:13 +08:00
|
|
|
if (/^.build\/distro\/npm(\/?)/.test(dir)) {
|
|
|
|
const ossPath = path.relative('.build/distro/npm', dir);
|
|
|
|
const ossYarnRc = path.join(ossPath, '.yarnrc');
|
|
|
|
|
|
|
|
if (fs.existsSync(ossYarnRc)) {
|
|
|
|
fs.cpSync(ossYarnRc, path.join(dir, '.yarnrc'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (/^(.build\/distro\/npm\/)?remote/.test(dir) && process.platform === 'win32' && (process.arch === 'arm64' || process.env['npm_config_arch'] === 'arm64')) {
|
2022-06-14 14:37:10 +08:00
|
|
|
// windows arm: do not execute `yarn` on remote folder
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir === 'build') {
|
|
|
|
setupBuildYarnrc();
|
|
|
|
yarnInstall('build');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let opts;
|
|
|
|
|
2024-04-30 20:57:13 +08:00
|
|
|
if (/^(.build\/distro\/npm\/)?remote$/.test(dir)) {
|
2022-06-14 14:37:10 +08:00
|
|
|
// node modules used by vscode server
|
|
|
|
const env = { ...process.env };
|
|
|
|
if (process.env['VSCODE_REMOTE_CC']) { env['CC'] = process.env['VSCODE_REMOTE_CC']; }
|
|
|
|
if (process.env['VSCODE_REMOTE_CXX']) { env['CXX'] = process.env['VSCODE_REMOTE_CXX']; }
|
|
|
|
if (process.env['CXXFLAGS']) { delete env['CXXFLAGS']; }
|
|
|
|
if (process.env['CFLAGS']) { delete env['CFLAGS']; }
|
|
|
|
if (process.env['LDFLAGS']) { delete env['LDFLAGS']; }
|
|
|
|
if (process.env['VSCODE_REMOTE_NODE_GYP']) { env['npm_config_node_gyp'] = process.env['VSCODE_REMOTE_NODE_GYP']; }
|
|
|
|
|
|
|
|
opts = { env };
|
|
|
|
} else if (/^extensions\//.test(dir)) {
|
|
|
|
opts = { ignoreEngines: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
yarnInstall(dir, opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
cp.execSync('git config pull.rebase merges');
|
2024-04-30 20:57:13 +08:00
|
|
|
cp.execSync('git config blame.ignoreRevsFile .git-blame-ignore-revs');
|