2018-08-13 11:14:15 -04:00
|
|
|
#!/bin/bash
|
2019-08-08 20:28:04 -04:00
|
|
|
|
2020-09-14 13:13:11 -04:00
|
|
|
set -ex
|
2020-09-14 12:57:19 -04:00
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
2020-09-18 12:23:26 -04:00
|
|
|
npm config set scripts-prepend-node-path true
|
2022-05-07 03:50:30 -04:00
|
|
|
npm config set node_gyp
|
2020-09-18 12:23:26 -04:00
|
|
|
|
2021-08-27 10:01:17 -04:00
|
|
|
echo "MS_COMMIT: ${MS_COMMIT}"
|
2019-05-03 20:10:53 -04:00
|
|
|
|
2020-09-18 14:51:36 -04:00
|
|
|
. prepare_vscode.sh
|
2019-05-03 20:10:53 -04:00
|
|
|
|
2022-06-08 16:03:44 -04:00
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
2018-10-05 09:43:05 -04:00
|
|
|
|
2020-09-14 12:57:19 -04:00
|
|
|
yarn monaco-compile-check
|
|
|
|
yarn valid-layers-check
|
|
|
|
|
2019-12-09 14:40:37 -05:00
|
|
|
yarn gulp compile-build
|
2021-06-29 14:02:52 -04:00
|
|
|
yarn gulp compile-extension-media
|
2019-12-09 14:40:37 -05:00
|
|
|
yarn gulp compile-extensions-build
|
2019-08-09 11:49:47 -04:00
|
|
|
yarn gulp minify-vscode
|
2019-08-09 12:42:15 -04:00
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
if [[ "${OS_NAME}" == "osx" ]]; then
|
2020-12-14 17:22:48 -05:00
|
|
|
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
|
2022-06-08 10:59:06 -04:00
|
|
|
|
2022-06-17 08:47:08 -04:00
|
|
|
find "../VSCode-darwin-${VSCODE_ARCH}" -exec touch {} \;
|
|
|
|
|
2022-06-08 10:59:06 -04:00
|
|
|
VSCODE_PLATFORM="darwin"
|
2021-10-01 12:47:10 -04:00
|
|
|
elif [[ "${OS_NAME}" == "windows" ]]; then
|
2021-09-08 19:38:07 -04:00
|
|
|
. ../build/windows/rtf/make.sh
|
2021-10-01 12:47:10 -04:00
|
|
|
|
2021-01-12 15:01:29 -05:00
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
|
2021-10-01 12:47:10 -04:00
|
|
|
|
2022-08-29 11:53:29 -04:00
|
|
|
if [[ "${VSCODE_ARCH}" != "ia32" && "${VSCODE_ARCH}" != "x64" ]]; then
|
2022-06-08 10:59:06 -04:00
|
|
|
SHOULD_BUILD_REH="no"
|
2021-09-08 19:38:07 -04:00
|
|
|
fi
|
2022-06-08 10:59:06 -04:00
|
|
|
|
|
|
|
VSCODE_PLATFORM="win32"
|
2019-04-05 13:13:11 -04:00
|
|
|
else # linux
|
2020-10-08 22:45:03 -04:00
|
|
|
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
|
2021-10-01 12:47:10 -04:00
|
|
|
|
2022-06-17 08:47:08 -04:00
|
|
|
find "../VSCode-linux-${VSCODE_ARCH}" -exec touch {} \;
|
|
|
|
|
2022-06-08 10:59:06 -04:00
|
|
|
VSCODE_PLATFORM="linux"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then
|
2022-06-11 07:46:15 -04:00
|
|
|
yarn gulp minify-vscode-reh
|
2022-06-08 10:59:06 -04:00
|
|
|
yarn gulp "vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}-min-ci"
|
2019-04-19 09:30:10 -04:00
|
|
|
fi
|
2018-11-27 09:19:34 -05:00
|
|
|
|
|
|
|
cd ..
|
2018-10-10 11:20:56 -04:00
|
|
|
fi
|