Add windows support (#41)

* Add windows support

* Improve multi-platform support

* Install with network-concurrency 1

* Use file-glob to upload windows binary

* Don't install packages in parallel if on windows

* Rename vscode-remote to code-server

* Add output at intervals so CI doesn't kill build

* Update all tasks to provide timed output

* Don't perform tasks sync otherwise we can't log
This commit is contained in:
Kyle Carberry
2019-02-28 14:04:19 -06:00
committed by GitHub
parent 1e30831c91
commit e8174095ca
27 changed files with 769 additions and 72 deletions

View File

@ -7,45 +7,48 @@ import { logger, field } from "../packages/logger";
/**
* Install dependencies for a single package.
*/
const doInstall = (pkg: string, path: string): void => {
const doInstall = (pkg: string, path: string): Promise<void> => {
logger.info(`Installing "${pkg}" dependencies...`);
exec("yarn", {
cwd: path,
maxBuffer: 1024 * 1024 * 10,
}, (error, stdout, stderr) => {
if (error) {
logger.error(
`Failed to install "${pkg}" dependencies`,
field("error", error),
field("stdout", stdout),
field("stderr", stderr),
);
process.exit(1);
}
logger.info(`Successfully grabbed \"${pkg}\" dependencies!`);
return new Promise((resolve): void => {
exec("yarn --network-concurrency 1", {
cwd: path,
maxBuffer: 1024 * 1024 * 10,
}, (error, stdout, stderr) => {
if (error) {
logger.error(
`Failed to install "${pkg}" dependencies`,
field("error", error),
field("stdout", stdout),
field("stderr", stderr),
);
process.exit(1);
}
logger.info(`Successfully grabbed \"${pkg}\" dependencies!`);
resolve();
});
});
};
/**
* Install dependencies for all packages.
*/
const handlePackages = (dir: string): void => {
readdirSync(dir).forEach((pkg) => {
const handlePackages = async (dir: string): Promise<void> => {
const dirs = readdirSync(dir);
for (let i = 0; i < dirs.length; i++) {
const pkg = dirs[i];
const pkgDir = join(dir, pkg);
const pkgJsonPath = join(pkgDir, "package.json");
if (existsSync(pkgJsonPath)) {
doInstall(pkg, pkgDir);
const ip = doInstall(pkg, pkgDir);
if (os.platform() === "win32") {
await ip;
}
}
});
}
};
if (os.platform() === "win32") {
execSync("yarn", {
cwd: resolve(__dirname, "..", "packages", "vscode"),
maxBuffer: 1024 * 1024 * 10,
});
}
handlePackages(resolve(__dirname, "..", "packages"));
handlePackages(resolve(__dirname, "..", "packages", "app"));
handlePackages(resolve(__dirname, "..", "packages")).then(() => {
return handlePackages(resolve(__dirname, "..", "packages", "app"));
});