1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #!/bin/bash
- set -ex
- function keep_alive() {
- while true; do
- date
- sleep 60
- done
- }
- if [[ "$SHOULD_BUILD" == "yes" ]]; then
- 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"
- # ./prepare_vscode.sh
- cd vscode || exit
- yarn --version
- node --version
- CHILD_CONCURRENCY=1 yarn --frozen-lockfile
- yarn postinstall
- # these tasks are very slow, so using a keep alive to keep travis alive
- keep_alive &
- KA_PID=$!
- yarn monaco-compile-check
- yarn valid-layers-check
- yarn gulp compile-build
- yarn gulp compile-extensions-build
- yarn gulp minify-vscode
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
- yarn gulp vscode-darwin-min-ci
- elif [[ "$CI_WINDOWS" == "True" ]]; then
- cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
- 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"
- else # linux
- yarn gulp vscode-linux-${BUILDARCH}-min-ci
- yarn gulp "vscode-linux-${BUILDARCH}-build-deb"
- if [[ "$BUILDARCH" == "x64" ]]; then
- yarn gulp "vscode-linux-${BUILDARCH}-build-rpm"
- fi
- . ../create_appimage.sh
- fi
- kill $KA_PID
- cd ..
- fi
|