mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
* Bump electron@4.0.0-beta.9 * electron 4 - temporarily warn about exploration change * update to Electron 4.0.0 stable * remove electron 4 notification * bump to electron@4.0.1 * electron 4: adopt format change of "version" file * build - set to use exploration image * Revert "build - set to use exploration image" This reverts commit1bb280fc5e. * electron@4.0.2 * fix electron.d.ts * update distro * bump electron@4.0.4 * debt - adopt new process.getProcessMemoryInfo() * update electron@4.0.5 * electron@4.0.6 * electron 4.0.x - remove Linux 32bit build * electron@4.0.7 * electron - update to 4.1.2 * bump electron@4.1.4 * update build (remove Linux32) * electron@4.1.5 * electron 4 - remove linux 32bit warning * Remove more 32-bit Linux build stuff Fixes #66271 * electron@4.2.0 * electron@4.2.1 * electron@4.2.2 * electron@4.2.3 * Revert "electron@4.2.3" This reverts commitae375ef764. * Revert "Revert "electron@4.2.3"" This reverts commit513581ebc5.
78 lines
2.3 KiB
YAML
78 lines
2.3 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"
|
|
|
|
- task: AzureKeyVault@1
|
|
displayName: 'Azure Key Vault: Get Secrets'
|
|
inputs:
|
|
azureSubscription: 'vscode-builds-subscription'
|
|
KeyVaultName: vscode
|
|
|
|
- script: |
|
|
set -e
|
|
export npm_config_arch="$(VSCODE_ARCH)"
|
|
|
|
cat << EOF > ~/.netrc
|
|
machine monacotools.visualstudio.com
|
|
password $(devops-pat)
|
|
machine github.com
|
|
login vscode
|
|
password $(github-distro-mixin-password)
|
|
EOF
|
|
|
|
git config user.email "vscode@microsoft.com"
|
|
git config user.name "VSCode"
|
|
git remote add distro "https://github.com/$(VSCODE_MIXIN_REPO).git"
|
|
git fetch distro
|
|
git merge $(node -p "require('./package.json').distro")
|
|
|
|
CHILD_CONCURRENCY=1 yarn
|
|
yarn gulp mixin
|
|
yarn gulp hygiene
|
|
yarn monaco-compile-check
|
|
node build/azure-pipelines/common/installDistroDependencies.js
|
|
node build/azure-pipelines/common/installDistroDependencies.js remote
|
|
node build/lib/builtInExtensions.js
|
|
displayName: Prepare build
|
|
|
|
- script: |
|
|
set -e
|
|
VSCODE_MIXIN_PASSWORD="$(github-distro-mixin-password)" \
|
|
./build/azure-pipelines/linux/build.sh
|
|
displayName: Build
|
|
|
|
- script: |
|
|
set -e
|
|
yarn gulp "electron-$(VSCODE_ARCH)"
|
|
|
|
# xvfb seems to be crashing often, let's make sure it's always up
|
|
service xvfb start
|
|
|
|
DISPLAY=:10 ./scripts/test.sh --build --tfs "Unit Tests"
|
|
# yarn smoketest -- --build "$(agent.builddirectory)/VSCode-linux-$(VSCODE_ARCH)"
|
|
displayName: Run unit tests
|
|
|
|
- script: |
|
|
set -e
|
|
AZURE_DOCUMENTDB_MASTERKEY="$(builds-docdb-key-readwrite)" \
|
|
AZURE_STORAGE_ACCESS_KEY_2="$(vscode-storage-key)" \
|
|
VSCODE_MIXIN_PASSWORD="$(github-distro-mixin-password)" \
|
|
VSCODE_HOCKEYAPP_TOKEN="$(vscode-hockeyapp-token)" \
|
|
./build/azure-pipelines/linux/publish.sh
|
|
displayName: Publish
|
|
|
|
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
|
|
displayName: 'Component Detection'
|
|
continueOnError: true
|
|
|
|
- task: PublishPipelineArtifact@0
|
|
displayName: 'Publish Pipeline Artifact'
|
|
inputs:
|
|
artifactName: snap-$(VSCODE_ARCH)
|
|
targetPath: .build/linux/snap-tarball
|