mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Merge from vscode a5cf1da01d5db3d2557132be8d30f89c38019f6c * remove files we don't want * fix hygiene * update distro * update distro * fix hygiene * fix strict nulls * distro * distro * fix tests * fix tests * add another edit * fix viewlet icon * fix azure dialog * fix some padding * fix more padding issues
29 lines
797 B
Bash
Executable File
29 lines
797 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# remove pkg from archive
|
|
zip -d ../VSCode-darwin.zip "*.pkg"
|
|
|
|
# publish the build
|
|
node build/azure-pipelines/common/createAsset.js \
|
|
darwin \
|
|
archive \
|
|
"VSCode-darwin-$VSCODE_QUALITY.zip" \
|
|
../VSCode-darwin.zip
|
|
|
|
# package Remote Extension Host
|
|
pushd .. && mv vscode-reh-darwin vscode-server-darwin && zip -Xry vscode-server-darwin.zip vscode-server-darwin && popd
|
|
|
|
# publish Remote Extension Host
|
|
node build/azure-pipelines/common/createAsset.js \
|
|
server-darwin \
|
|
archive-unsigned \
|
|
"vscode-server-darwin.zip" \
|
|
../vscode-server-darwin.zip
|
|
|
|
# publish hockeyapp symbols
|
|
node build/azure-pipelines/common/symbols.js "$VSCODE_MIXIN_PASSWORD" "$VSCODE_HOCKEYAPP_TOKEN" x64 "$VSCODE_HOCKEYAPP_ID_MACOS"
|
|
|
|
# upload configuration
|
|
yarn gulp upload-vscode-configuration
|