vscodium/build.sh

62 lines
1.5 KiB
Bash
Raw Normal View History

2018-08-13 15:14:15 +00:00
#!/bin/bash
set -ex
2019-12-20 22:20:10 +00:00
function keep_alive() {
while true; do
date
sleep 60
done
}
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}"
export npm_config_arch="$BUILDARCH"
export npm_config_target_arch="$BUILDARCH"
2019-05-04 00:10:53 +00:00
./prepare_vscode.sh
2019-05-04 00:10:53 +00:00
cd vscode || exit
2019-12-20 22:20:10 +00:00
# these tasks are very slow, so using a keep alive to keep travis alive
2020-09-14 18:17:53 +00:00
keep_alive &
2019-12-20 22:20:10 +00:00
2019-08-09 16:42:15 +00:00
KA_PID=$!
2019-12-09 19:40:37 +00:00
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 [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
2019-08-09 15:49:47 +00:00
yarn gulp vscode-darwin-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
2019-12-09 19:40:37 +00:00
yarn gulp vscode-linux-${BUILDARCH}-min-ci
2019-08-09 15:49:47 +00:00
yarn gulp "vscode-linux-${BUILDARCH}-build-deb"
2019-12-10 15:28:28 +00:00
if [[ "$BUILDARCH" == "x64" ]]; then
2019-12-09 19:40:37 +00:00
yarn gulp "vscode-linux-${BUILDARCH}-build-rpm"
fi
2019-04-19 13:30:10 +00:00
. ../create_appimage.sh
fi
2019-12-09 19:40:37 +00:00
kill $KA_PID
cd ..
fi