mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Merge from vscode e388c734f30757875976c7e326d6cfeee77710de * fix yarn lcoks * remove small issue
102 lines
3.0 KiB
YAML
102 lines
3.0 KiB
YAML
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: "10.15.1"
|
|
|
|
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
|
|
inputs:
|
|
versionSpec: "1.10.1"
|
|
|
|
- script: |
|
|
set -e
|
|
|
|
cat << EOF > ~/.netrc
|
|
machine monacotools.visualstudio.com
|
|
password $(VSO_PAT)
|
|
machine github.com
|
|
login vscode
|
|
password $(VSCODE_MIXIN_PASSWORD)
|
|
EOF
|
|
|
|
yarn
|
|
VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" yarn gulp -- mixin
|
|
yarn gulp -- hygiene
|
|
yarn monaco-compile-check
|
|
node build/azure-pipelines/common/installDistro.js
|
|
node build/lib/builtInExtensions.js
|
|
displayName: Prepare build
|
|
|
|
- script: |
|
|
set -e
|
|
VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" \
|
|
AZURE_STORAGE_ACCESS_KEY="$(AZURE_STORAGE_ACCESS_KEY)" \
|
|
yarn gulp -- vscode-darwin-min
|
|
VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" \
|
|
AZURE_STORAGE_ACCESS_KEY="$(AZURE_STORAGE_ACCESS_KEY)" \
|
|
yarn gulp -- upload-vscode-sourcemaps
|
|
displayName: Build
|
|
|
|
- script: |
|
|
set -e
|
|
./scripts/test.sh --build --tfs "Unit Tests"
|
|
# APP_NAME="`ls $(agent.builddirectory)/VSCode-darwin | head -n 1`"
|
|
# yarn smoketest -- --build "$(agent.builddirectory)/VSCode-darwin/$APP_NAME"
|
|
displayName: Run unit tests
|
|
|
|
- script: |
|
|
set -e
|
|
pushd ../VSCode-darwin && zip -r -X -y ../VSCode-darwin.zip * && popd
|
|
displayName: Archive build
|
|
|
|
- task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
|
|
inputs:
|
|
ConnectedServiceName: 'ESRP CodeSign'
|
|
FolderPath: '$(agent.builddirectory)'
|
|
Pattern: 'VSCode-darwin.zip'
|
|
signConfigType: inlineSignParams
|
|
inlineOperation: |
|
|
[
|
|
{
|
|
"keyCode": "CP-401337-Apple",
|
|
"operationSetCode": "MacAppDeveloperSign",
|
|
"parameters": [ ],
|
|
"toolName": "sign",
|
|
"toolVersion": "1.0"
|
|
}
|
|
]
|
|
SessionTimeout: 120
|
|
displayName: Codesign
|
|
|
|
- script: |
|
|
set -e
|
|
|
|
# remove pkg from archive
|
|
zip -d ../VSCode-darwin.zip "*.pkg"
|
|
|
|
# publish the build
|
|
PACKAGEJSON=`ls ../VSCode-darwin/*.app/Contents/Resources/app/package.json`
|
|
VERSION=`node -p "require(\"$PACKAGEJSON\").version"`
|
|
AZURE_DOCUMENTDB_MASTERKEY="$(AZURE_DOCUMENTDB_MASTERKEY)" \
|
|
AZURE_STORAGE_ACCESS_KEY_2="$(AZURE_STORAGE_ACCESS_KEY_2)" \
|
|
MOONCAKE_STORAGE_ACCESS_KEY="$(MOONCAKE_STORAGE_ACCESS_KEY)" \
|
|
node build/azure-pipelines/common/publish.js \
|
|
"$(VSCODE_QUALITY)" \
|
|
darwin \
|
|
archive \
|
|
"VSCode-darwin-$(VSCODE_QUALITY).zip" \
|
|
$VERSION \
|
|
true \
|
|
../VSCode-darwin.zip
|
|
|
|
# publish hockeyapp symbols
|
|
node build/azure-pipelines/common/symbols.js "$(VSCODE_MIXIN_PASSWORD)" "$(VSCODE_HOCKEYAPP_TOKEN)" "$(VSCODE_ARCH)" "$(VSCODE_HOCKEYAPP_ID_MACOS)"
|
|
|
|
# upload configuration
|
|
AZURE_STORAGE_ACCESS_KEY="$(AZURE_STORAGE_ACCESS_KEY)" \
|
|
yarn gulp -- upload-vscode-configuration
|
|
displayName: Publish
|
|
|
|
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
|
|
displayName: 'Component Detection'
|
|
continueOnError: true
|