mirror of
https://github.com/VSCodium/vscodium.git
synced 2025-12-23 23:27:52 -05:00
86 lines
2.2 KiB
Bash
Executable File
86 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# shellcheck disable=SC1091
|
|
|
|
set -ex
|
|
|
|
. version.sh
|
|
|
|
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
|
echo "MS_COMMIT=\"${MS_COMMIT}\""
|
|
|
|
. prepare_vscode.sh
|
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
export NODE_OPTIONS="--max-old-space-size=8192"
|
|
|
|
npm run monaco-compile-check
|
|
npm run valid-layers-check
|
|
|
|
npm run gulp compile-build-without-mangling
|
|
npm run gulp compile-extension-media
|
|
npm run gulp compile-extensions-build
|
|
npm run gulp minify-vscode
|
|
|
|
if [[ "${OS_NAME}" == "osx" ]]; then
|
|
# remove win32 node modules
|
|
rm -f .build/extensions/ms-vscode.js-debug/src/win32-app-container-tokens.*.node
|
|
|
|
# generate Group Policy definitions
|
|
node build/lib/policies/policyGenerator build/lib/policies/policyData.jsonc darwin
|
|
|
|
npm run gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
|
|
|
|
find "../VSCode-darwin-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
|
|
|
|
. ../build_cli.sh
|
|
|
|
VSCODE_PLATFORM="darwin"
|
|
elif [[ "${OS_NAME}" == "windows" ]]; then
|
|
# generate Group Policy definitions
|
|
node build/lib/policies/policyGenerator build/lib/policies/policyData.jsonc win32
|
|
|
|
# in CI, packaging will be done by a different job
|
|
if [[ "${CI_BUILD}" == "no" ]]; then
|
|
. ../build/windows/rtf/make.sh
|
|
|
|
npm run gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
|
|
|
|
if [[ "${VSCODE_ARCH}" != "x64" ]]; then
|
|
SHOULD_BUILD_REH="no"
|
|
SHOULD_BUILD_REH_WEB="no"
|
|
fi
|
|
|
|
. ../build_cli.sh
|
|
fi
|
|
|
|
VSCODE_PLATFORM="win32"
|
|
else # linux
|
|
# remove win32 node modules
|
|
rm -f .build/extensions/ms-vscode.js-debug/src/win32-app-container-tokens.*.node
|
|
|
|
# in CI, packaging will be done by a different job
|
|
if [[ "${CI_BUILD}" == "no" ]]; then
|
|
npm run gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
|
|
|
|
find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
|
|
|
|
. ../build_cli.sh
|
|
fi
|
|
|
|
VSCODE_PLATFORM="linux"
|
|
fi
|
|
|
|
if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then
|
|
npm run gulp minify-vscode-reh
|
|
npm run gulp "vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}-min-ci"
|
|
fi
|
|
|
|
if [[ "${SHOULD_BUILD_REH_WEB}" != "no" ]]; then
|
|
npm run gulp minify-vscode-reh-web
|
|
npm run gulp "vscode-reh-web-${VSCODE_PLATFORM}-${VSCODE_ARCH}-min-ci"
|
|
fi
|
|
|
|
cd ..
|
|
fi
|