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
|
|
|
|
2021-10-01 19:47:10 +03:00
|
|
|
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
2020-09-18 19:23:26 +03:00
|
|
|
npm config set scripts-prepend-node-path true
|
2022-05-07 10:50:30 +03:00
|
|
|
npm config set node_gyp
|
2020-09-18 19:23:26 +03:00
|
|
|
|
2021-08-27 17:01:17 +03:00
|
|
|
echo "MS_COMMIT: ${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
|
|
|
|
2022-06-08 23:03:44 +03:00
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
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
|
2021-06-29 21:02:52 +03:00
|
|
|
yarn gulp compile-extension-media
|
2019-12-09 22:40:37 +03:00
|
|
|
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
|
|
|
|
2021-10-01 19:47:10 +03:00
|
|
|
if [[ "${OS_NAME}" == "osx" ]]; then
|
2020-12-15 01:22:48 +03:00
|
|
|
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
|
2022-06-08 17:59:06 +03:00
|
|
|
|
2022-06-17 15:47:08 +03:00
|
|
|
find "../VSCode-darwin-${VSCODE_ARCH}" -exec touch {} \;
|
|
|
|
|
2022-06-08 17:59:06 +03:00
|
|
|
VSCODE_PLATFORM="darwin"
|
2021-10-01 19:47:10 +03:00
|
|
|
elif [[ "${OS_NAME}" == "windows" ]]; then
|
2021-09-09 02:38:07 +03:00
|
|
|
. ../build/windows/rtf/make.sh
|
2021-10-01 19:47:10 +03:00
|
|
|
|
2021-01-12 23:01:29 +03:00
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
|
2021-10-01 19:47:10 +03:00
|
|
|
|
2022-08-29 18:53:29 +03:00
|
|
|
if [[ "${VSCODE_ARCH}" != "ia32" && "${VSCODE_ARCH}" != "x64" ]]; then
|
2022-06-08 17:59:06 +03:00
|
|
|
SHOULD_BUILD_REH="no"
|
2021-09-09 02:38:07 +03:00
|
|
|
fi
|
2022-06-08 17:59:06 +03:00
|
|
|
|
|
|
|
VSCODE_PLATFORM="win32"
|
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"
|
2021-10-01 19:47:10 +03:00
|
|
|
|
2022-06-17 15:47:08 +03:00
|
|
|
find "../VSCode-linux-${VSCODE_ARCH}" -exec touch {} \;
|
|
|
|
|
2022-06-08 17:59:06 +03:00
|
|
|
VSCODE_PLATFORM="linux"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then
|
2022-06-11 14:46:15 +03:00
|
|
|
yarn gulp minify-vscode-reh
|
2022-06-08 17:59:06 +03:00
|
|
|
yarn gulp "vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}-min-ci"
|
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
|