2018-08-13 11:14:15 -04:00
|
|
|
#!/bin/bash
|
2019-08-08 20:28:04 -04:00
|
|
|
|
2020-09-14 13:13:11 -04:00
|
|
|
set -ex
|
2020-09-14 12:57:19 -04:00
|
|
|
|
2018-08-13 14:24:40 -04:00
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
2020-09-18 12:23:26 -04:00
|
|
|
npm config set scripts-prepend-node-path true
|
|
|
|
|
2019-08-20 18:17:17 -04:00
|
|
|
export BUILD_SOURCEVERSION=$LATEST_MS_COMMIT
|
|
|
|
echo "LATEST_MS_COMMIT: ${LATEST_MS_COMMIT}"
|
|
|
|
echo "BUILD_SOURCEVERSION: ${BUILD_SOURCEVERSION}"
|
|
|
|
|
2020-10-05 13:12:28 -04:00
|
|
|
if [[ "$CI_WINDOWS" == "True" ]]; then
|
2020-09-18 14:51:36 -04:00
|
|
|
export npm_config_arch="$BUILDARCH"
|
|
|
|
export npm_config_target_arch="$BUILDARCH"
|
|
|
|
fi
|
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
|
|
|
|
2020-09-15 13:45:50 -04:00
|
|
|
cd vscode || exit
|
2018-10-05 09:43:05 -04:00
|
|
|
|
2020-09-14 12:57:19 -04:00
|
|
|
yarn monaco-compile-check
|
|
|
|
yarn valid-layers-check
|
|
|
|
|
2019-12-09 14:40:37 -05:00
|
|
|
yarn gulp compile-build
|
|
|
|
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
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
if [[ "$OS_NAME" == "osx" ]]; then
|
2020-12-14 15:35:53 -05:00
|
|
|
yarn gulp vscode-darwin-x64-min-ci
|
2018-11-27 09:19:34 -05:00
|
|
|
elif [[ "$CI_WINDOWS" == "True" ]]; then
|
2019-03-18 21:24:43 -04:00
|
|
|
cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
|
2019-08-09 11:49:47 -04: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 13:13:11 -04:00
|
|
|
else # linux
|
2020-10-08 22:45:03 -04:00
|
|
|
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
|
2020-10-22 08:52:44 -04:00
|
|
|
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 09:30:10 -04:00
|
|
|
fi
|
2018-11-27 09:19:34 -05:00
|
|
|
|
|
|
|
cd ..
|
2018-10-10 11:20:56 -04:00
|
|
|
fi
|