mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
* refactor: build x64 remote modules with same toolchain as binary Refs https://github.com/nodejs/node/blob/master/BUILDING.md#official-binary-platforms-and-toolchains Fixes https://github.com/microsoft/vscode/issues/137659 * chore: split client and server stages for x64 * chore: add build dependencies * Revert "chore: add build dependencies" This reverts commit f9077c9ebd6017bd973db9366dc3d7f336293742. * chore: build step requires root dependencies * chore: only perform module installation in separate stage * chore: fix target path * chore: run server stage in parallel to compile * chore: fix dependency chain * chore: declare parallel dependecy * chore: fix artifact name * chore: publish as archive to preserve file types * chore: fix target directory for extraction * chore: update postinstall script
6 lines
119 B
Bash
Executable File
6 lines
119 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Installing remote dependencies"
|
|
(cd remote && rm -rf node_modules && yarn --verbose)
|