vscodium/build.sh

61 lines
1.4 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
# shellcheck disable=SC1091
set -ex
. version.sh
2021-10-01 16:47:10 +00:00
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
echo "MS_COMMIT=\"${MS_COMMIT}\""
2019-05-04 00:10:53 +00:00
2020-09-18 18:51:36 +00:00
. prepare_vscode.sh
2019-05-04 00:10:53 +00:00
cd vscode || { echo "'vscode' dir not found"; exit 1; }
yarn monaco-compile-check
yarn valid-layers-check
2019-12-09 19:40:37 +00:00
yarn gulp compile-build
2021-06-29 18:02:52 +00:00
yarn gulp compile-extension-media
2019-12-09 19:40:37 +00:00
yarn gulp compile-extensions-build
2019-08-09 15:49:47 +00:00
yarn gulp minify-vscode
2019-08-09 16:42:15 +00:00
2021-10-01 16:47:10 +00:00
if [[ "${OS_NAME}" == "osx" ]]; then
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
2022-06-08 14:59:06 +00:00
2023-07-23 16:35:27 +00:00
find "../VSCode-darwin-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
2022-06-08 14:59:06 +00:00
VSCODE_PLATFORM="darwin"
2021-10-01 16:47:10 +00:00
elif [[ "${OS_NAME}" == "windows" ]]; then
. ../build/windows/rtf/make.sh
2021-10-01 16:47:10 +00:00
yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
2021-10-01 16:47:10 +00:00
if [[ "${VSCODE_ARCH}" != "ia32" && "${VSCODE_ARCH}" != "x64" ]]; then
2022-06-08 14:59:06 +00:00
SHOULD_BUILD_REH="no"
fi
2022-06-08 14:59:06 +00:00
VSCODE_PLATFORM="win32"
2019-04-05 17:13:11 +00: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 16:47:10 +00:00
find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
fi
2022-06-08 14:59:06 +00: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 14:59:06 +00:00
yarn gulp "vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}-min-ci"
2019-04-19 13:30:10 +00:00
fi
cd ..
fi