mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Added build changes to add TSGOps extensions into the build (#15584)
* Add TSGOps specific extensions to SAW build * Added the KeyVault uri
This commit is contained in:
@@ -16,7 +16,7 @@ steps:
|
|||||||
inputs:
|
inputs:
|
||||||
azureSubscription: 'ClientToolsInfra_670062 (88d5392f-a34f-4769-b405-f597fc533613)'
|
azureSubscription: 'ClientToolsInfra_670062 (88d5392f-a34f-4769-b405-f597fc533613)'
|
||||||
KeyVaultName: ado-secrets
|
KeyVaultName: ado-secrets
|
||||||
SecretsFilter: 'github-distro-mixin-password'
|
SecretsFilter: 'github-distro-mixin-password,standalone-extensions-uri'
|
||||||
displayName: 'Azure Key Vault: Get Secrets'
|
displayName: 'Azure Key Vault: Get Secrets'
|
||||||
|
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadPipelineArtifact@2
|
||||||
@@ -119,6 +119,19 @@ steps:
|
|||||||
vstsPackageVersion: '*'
|
vstsPackageVersion: '*'
|
||||||
condition: and(succeeded(), eq(variables['VSCODE_QUALITY'], 'saw'))
|
condition: and(succeeded(), eq(variables['VSCODE_QUALITY'], 'saw'))
|
||||||
|
|
||||||
|
- powershell: |
|
||||||
|
# Install TSGOps specific extensions
|
||||||
|
$ErrorActionPreference = "Stop"
|
||||||
|
$tempFilePath = (New-TemporaryFile).FullName
|
||||||
|
$zipFilePath = $tempFilePath + ".zip"
|
||||||
|
$extensionUri = "$(standalone-extensions-uri)"
|
||||||
|
$adsExtensionPath = "$(agent.builddirectory)\azuredatastudio-win32-x64\resources\app\extensions"
|
||||||
|
Invoke-WebRequest -Uri $extensionUri -OutFile $tempFilePath
|
||||||
|
Move-Item $tempFilePath $zipFilePath
|
||||||
|
Expand-Archive $zipFilePath -DestinationPath $adsExtensionPath
|
||||||
|
displayName: Install SAW Extensions
|
||||||
|
condition: and(succeeded(), eq(variables['VSCODE_QUALITY'], 'saw'))
|
||||||
|
|
||||||
# - powershell: | @anthonydresser unit tests timeout never existing the node process
|
# - powershell: | @anthonydresser unit tests timeout never existing the node process
|
||||||
# . build/azure-pipelines/win32/exec.ps1
|
# . build/azure-pipelines/win32/exec.ps1
|
||||||
# $ErrorActionPreference = "Stop"
|
# $ErrorActionPreference = "Stop"
|
||||||
|
|||||||
Reference in New Issue
Block a user