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