2018-08-13 18:14:15 +03:00
|
|
|
#!/bin/bash
|
2019-08-09 03:28:04 +03:00
|
|
|
|
2020-09-14 20:13:11 +03:00
|
|
|
set -ex
|
2020-09-14 19:57:19 +03:00
|
|
|
|
2021-10-01 19:47:10 +03:00
|
|
|
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
2020-09-18 19:23:26 +03:00
|
|
|
npm config set scripts-prepend-node-path true
|
|
|
|
|
2021-08-27 17:01:17 +03:00
|
|
|
echo "MS_COMMIT: ${MS_COMMIT}"
|
2019-05-04 03:10:53 +03:00
|
|
|
|
2020-09-18 21:51:36 +03:00
|
|
|
. prepare_vscode.sh
|
2019-05-04 03:10:53 +03:00
|
|
|
|
2020-09-15 20:45:50 +03:00
|
|
|
cd vscode || exit
|
2018-10-05 16:43:05 +03:00
|
|
|
|
2020-09-14 19:57:19 +03:00
|
|
|
yarn monaco-compile-check
|
|
|
|
yarn valid-layers-check
|
|
|
|
|
2019-12-09 22:40:37 +03:00
|
|
|
yarn gulp compile-build
|
2021-06-29 21:02:52 +03:00
|
|
|
yarn gulp compile-extension-media
|
2019-12-09 22:40:37 +03:00
|
|
|
yarn gulp compile-extensions-build
|
2019-08-09 18:49:47 +03:00
|
|
|
yarn gulp minify-vscode
|
2019-08-09 19:42:15 +03:00
|
|
|
|
2021-10-01 19:47:10 +03:00
|
|
|
if [[ "${OS_NAME}" == "osx" ]]; then
|
2020-12-15 01:22:48 +03:00
|
|
|
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
|
2021-10-01 19:47:10 +03:00
|
|
|
elif [[ "${OS_NAME}" == "windows" ]]; then
|
2021-09-09 02:38:07 +03:00
|
|
|
. ../build/windows/rtf/make.sh
|
2021-10-01 19:47:10 +03:00
|
|
|
|
2021-01-12 23:01:29 +03:00
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
|
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-inno-updater"
|
2021-10-01 19:47:10 +03:00
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_ZIP}" != "no" ]]; then
|
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-archive"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_EXE_SYS}" != "no" ]]; then
|
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-system-setup"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_EXE_USR}" != "no" ]]; then
|
|
|
|
yarn gulp "vscode-win32-${VSCODE_ARCH}-user-setup"
|
|
|
|
fi
|
|
|
|
|
2021-09-09 02:38:07 +03:00
|
|
|
if [[ "${VSCODE_ARCH}" == "ia32" || "${VSCODE_ARCH}" == "x64" ]]; then
|
2021-10-01 19:47:10 +03:00
|
|
|
if [[ "${SHOULD_BUILD_MSI}" != "no" ]]; then
|
|
|
|
. ../build/windows/msi/build.sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_MSI_NOUP}" != "no" ]]; then
|
|
|
|
. ../build/windows/msi/build-updates-disabled.sh
|
|
|
|
fi
|
2021-09-09 02:38:07 +03:00
|
|
|
fi
|
2019-04-05 20:13:11 +03:00
|
|
|
else # linux
|
2020-10-09 05:45:03 +03:00
|
|
|
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
|
2021-10-01 19:47:10 +03:00
|
|
|
|
|
|
|
if [[ "${SKIP_LINUX_PACKAGES}" != "True" ]]; then
|
|
|
|
if [[ "${SHOULD_BUILD_DEB}" != "no" || "${SHOULD_BUILD_APPIMAGE}" != "no" ]]; then
|
|
|
|
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-deb"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_RPM}" != "no" ]]; then
|
|
|
|
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-rpm"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD_APPIMAGE}" != "no" ]]; then
|
|
|
|
. ../build/linux/appimage/build.sh
|
|
|
|
fi
|
2020-10-22 15:52:44 +03:00
|
|
|
fi
|
2019-04-19 16:30:10 +03:00
|
|
|
fi
|
2018-11-27 17:19:34 +03:00
|
|
|
|
|
|
|
cd ..
|
2018-10-10 18:20:56 +03:00
|
|
|
fi
|