2023-07-20 21:25:13 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC1091
|
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
|
|
|
|
2023-07-20 21:25:13 +03:00
|
|
|
if [[ -f "./remote-dependencies.tar" ]]; then
|
2022-11-10 20:18:26 +03:00
|
|
|
tar -xf ./remote-dependencies.tar ./vscode/remote/node_modules
|
|
|
|
fi
|
|
|
|
|
2022-10-19 19:19:55 +03:00
|
|
|
. version.sh
|
|
|
|
|
2021-10-01 19:47:10 +03:00
|
|
|
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
2022-10-02 11:39:39 +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
|
|
|
|
2023-07-23 19:35:27 +03:00
|
|
|
find "../VSCode-darwin-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
|
2022-06-17 15:47:08 +03:00
|
|
|
|
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"
|
2023-06-05 09:50:34 +03:00
|
|
|
elif [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then # linux-ppc64le
|
|
|
|
VSCODE_PLATFORM="linux"
|
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
|
|
|
|
2023-07-23 19:35:27 +03:00
|
|
|
find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
|
2022-06-17 15:47:08 +03:00
|
|
|
|
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
|