vscodium/build.sh

63 lines
1.4 KiB
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
# shellcheck disable=SC1091
set -ex
. version.sh
2021-10-01 12:47:10 -04:00
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
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
cd vscode || { echo "'vscode' dir not found"; exit 1; }
2024-04-04 17:14:54 -04:00
export NODE_OPTIONS="--max-old-space-size=8192"
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
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
2022-06-08 10:59:06 -04:00
2023-07-23 12:35:27 -04:00
find "../VSCode-darwin-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
2022-06-08 10:59:06 -04:00
VSCODE_PLATFORM="darwin"
2021-10-01 12:47:10 -04:00
elif [[ "${OS_NAME}" == "windows" ]]; then
. ../build/windows/rtf/make.sh
2021-10-01 12:47:10 -04:00
yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
2021-10-01 12:47:10 -04:00
if [[ "${VSCODE_ARCH}" != "ia32" && "${VSCODE_ARCH}" != "x64" ]]; then
2022-06-08 10:59:06 -04:00
SHOULD_BUILD_REH="no"
fi
2022-06-08 10:59:06 -04:00
VSCODE_PLATFORM="win32"
2019-04-05 13:13:11 -04:00
else # linux
# in CI, packaging will be done by a different job
if [[ "${CI_BUILD}" == "no" ]]; then
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
2021-10-01 12:47:10 -04:00
find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
fi
2022-06-08 10:59:06 -04:00
VSCODE_PLATFORM="linux"
fi
if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then
if [[ "${OS_NAME}" == "linux" ]]; then
export VSCODE_NODE_GLIBC='-glibc-2.17'
fi
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
cd ..
fi