vscodium/build.sh

49 lines
1.3 KiB
Bash
Raw Normal View History

2018-08-13 15:14:15 +00:00
#!/bin/bash
set -ex
2018-08-13 18:24:40 +00:00
if [[ "$SHOULD_BUILD" == "yes" ]]; then
npm config set scripts-prepend-node-path true
export BUILD_SOURCEVERSION=$LATEST_MS_COMMIT
echo "LATEST_MS_COMMIT: ${LATEST_MS_COMMIT}"
echo "BUILD_SOURCEVERSION: ${BUILD_SOURCEVERSION}"
if [[ "$CI_WINDOWS" == "True" ]]; then
2020-09-18 18:51:36 +00:00
export npm_config_arch="$BUILDARCH"
export npm_config_target_arch="$BUILDARCH"
fi
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 || exit
yarn monaco-compile-check
yarn valid-layers-check
2019-12-09 19:40:37 +00:00
yarn gulp compile-build
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
if [[ "$OS_NAME" == "osx" ]]; then
2020-12-14 20:35:53 +00:00
yarn gulp vscode-darwin-x64-min-ci
elif [[ "$CI_WINDOWS" == "True" ]]; then
cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
2019-08-09 15:49:47 +00:00
yarn gulp "vscode-win32-${BUILDARCH}-min-ci"
yarn gulp "vscode-win32-${BUILDARCH}-code-helper"
yarn gulp "vscode-win32-${BUILDARCH}-inno-updater"
yarn gulp "vscode-win32-${BUILDARCH}-archive"
yarn gulp "vscode-win32-${BUILDARCH}-system-setup"
yarn gulp "vscode-win32-${BUILDARCH}-user-setup"
2019-04-05 17:13:11 +00:00
else # linux
2020-10-09 02:45:03 +00:00
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
if [[ "$SKIP_LINUX_PACKAGES" != "True" ]]; then
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-deb"
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-rpm"
. ../create_appimage.sh
fi
2019-04-19 13:30:10 +00:00
fi
cd ..
fi