a1136b3a02
* Update VS Code to 1.33.0 * Fix slow file tree * Fix WindowsService fill * Provide `off` on event listeners * Fix webview * Fix double title bar and missing preferences on Mac * Bump VS Code version in Travis config * Fix black dialog text (again) * Fix shared process not starting
25 lines
551 B
Bash
Executable File
25 lines
551 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Builds a tarfile containing vscode sourcefiles neccessary for CI.
|
|
# Done outside the CI and uploaded to object storage to reduce CI time.
|
|
|
|
branch=1.33.0
|
|
dir=/tmp/vstar
|
|
outfile=/tmp/vstar-$branch.tar.gz
|
|
rm -rf $dir
|
|
mkdir -p $dir
|
|
|
|
cd $dir
|
|
git clone https://github.com/microsoft/vscode --branch $branch --single-branch --depth=1
|
|
cd vscode
|
|
|
|
yarn
|
|
|
|
npx gulp vscode-linux-x64 --max-old-space-size=32384
|
|
rm -rf extensions build out* test
|
|
cd ..
|
|
mv *-x64/resources/app/extensions ./extensions
|
|
rm -rf *-x64
|
|
tar -czvf $outfile .
|