vscodium/build.sh

60 lines
1.3 KiB
Bash
Raw Normal View History

2018-08-13 11:14:15 -04:00
#!/bin/bash
set -ex
2022-11-10 12:18:26 -05:00
if [ -f "./remote-dependencies.tar" ]; then
tar -xf ./remote-dependencies.tar ./vscode/remote/node_modules
fi
. version.sh
2021-10-01 12:47:10 -04:00
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
npm config set scripts-prepend-node-path true
2022-05-07 03:50:30 -04:00
npm config set node_gyp
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; }
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
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
. ../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
2020-10-08 22:45:03 -04:00
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
2021-10-01 12:47:10 -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
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