2018-08-13 15:14:15 +00:00
|
|
|
#!/bin/bash
|
2019-08-09 00:28:04 +00:00
|
|
|
|
2020-09-14 17:13:11 +00:00
|
|
|
set -ex
|
2020-09-14 16:57:19 +00:00
|
|
|
|
2018-08-13 18:24:40 +00:00
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
2020-09-18 16:23:26 +00:00
|
|
|
npm config set scripts-prepend-node-path true
|
|
|
|
|
2019-08-20 22:17:17 +00:00
|
|
|
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
|
|
|
|
2020-09-15 17:45:50 +00:00
|
|
|
cd vscode || exit
|
2018-10-05 13:43:05 +00:00
|
|
|
|
2020-09-14 16:57:19 +00:00
|
|
|
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
|
|
|
|
2020-09-20 21:26:06 +00:00
|
|
|
if [[ "$OS_NAME" == "osx" ]]; then
|
2020-12-14 22:22:48 +00:00
|
|
|
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
|
2021-01-12 20:01:29 +00:00
|
|
|
elif [[ "$OS_NAME" == "windows" ]]; then
|
2019-03-19 01:24:43 +00:00
|
|
|
cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
|
2021-01-12 20:01:29 +00:00
|
|
|
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"
|
2020-10-22 12:52:44 +00:00
|
|
|
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
|
2018-11-27 14:19:34 +00:00
|
|
|
|
|
|
|
cd ..
|
2018-10-10 15:20:56 +00:00
|
|
|
fi
|