vscodium/build.sh

42 lines
1.1 KiB
Bash
Raw Normal View History

2018-08-13 15:14:15 +00:00
#!/bin/bash
set -ex
2018-08-13 18:24:40 +00:00
if [[ "$SHOULD_BUILD" == "yes" ]]; then
npm config set scripts-prepend-node-path true
echo "LATEST_MS_COMMIT: ${LATEST_MS_COMMIT}"
2019-05-04 00:10:53 +00:00
2020-09-18 18:51:36 +00:00
. prepare_vscode.sh
2019-05-04 00:10:53 +00:00
cd vscode || exit
yarn monaco-compile-check
yarn valid-layers-check
2019-12-09 19:40:37 +00:00
yarn gulp compile-build
yarn gulp compile-extensions-build
2019-08-09 15:49:47 +00:00
yarn gulp minify-vscode
2019-08-09 16:42:15 +00:00
if [[ "$OS_NAME" == "osx" ]]; then
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
elif [[ "$OS_NAME" == "windows" ]]; then
cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
yarn gulp "vscode-win32-${VSCODE_ARCH}-code-helper"
yarn gulp "vscode-win32-${VSCODE_ARCH}-inno-updater"
yarn gulp "vscode-win32-${VSCODE_ARCH}-archive"
yarn gulp "vscode-win32-${VSCODE_ARCH}-system-setup"
yarn gulp "vscode-win32-${VSCODE_ARCH}-user-setup"
2019-04-05 17:13:11 +00:00
else # linux
2020-10-09 02:45:03 +00:00
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
if [[ "$SKIP_LINUX_PACKAGES" != "True" ]]; then
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-deb"
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-rpm"
. ../create_appimage.sh
fi
2019-04-19 13:30:10 +00:00
fi
cd ..
fi