mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Only package external extensions on Linux in the pipelines (#8464)
* don't package every time, only on linux * fix build * fix build * fix floating promises * add comment * fix order of steps * clean up packaging of the extensions * minor cleanup * make code easier to read and add more logging * do some rename * maybe? * re order the code * fix output path not existing
This commit is contained in:
@@ -67,12 +67,6 @@ steps:
|
||||
exec { node build/azure-pipelines/mixin }
|
||||
displayName: Mix in quality
|
||||
|
||||
- powershell: |
|
||||
. build/azure-pipelines/win32/exec.ps1
|
||||
$ErrorActionPreference = "Stop"
|
||||
exec { yarn gulp "vscode-win32-x64" }
|
||||
displayName: Build
|
||||
|
||||
- powershell: |
|
||||
. build/azure-pipelines/win32/exec.ps1
|
||||
$ErrorActionPreference = "Stop"
|
||||
@@ -82,8 +76,8 @@ steps:
|
||||
- powershell: |
|
||||
. build/azure-pipelines/win32/exec.ps1
|
||||
$ErrorActionPreference = "Stop"
|
||||
exec { yarn gulp "install-ssmsmin" }
|
||||
displayName: Install ssmsmin
|
||||
exec { yarn gulp "vscode-win32-x64" }
|
||||
displayName: Build
|
||||
|
||||
- task: ArchiveFiles@2 # WHY
|
||||
displayName: 'Archive build scripts source'
|
||||
@@ -133,12 +127,6 @@ steps:
|
||||
condition: and(succeeded(), eq(variables['RUN_UNSTABLE_TESTS'], 'true'))
|
||||
displayName: Run unstable integration tests
|
||||
|
||||
- task: CopyFiles@2
|
||||
displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)/vsix'
|
||||
inputs:
|
||||
SourceFolder: '$(Build.SourcesDirectory)/../vsix'
|
||||
TargetFolder: '$(Build.ArtifactStagingDirectory)/vsix'
|
||||
|
||||
- task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
|
||||
displayName: 'ESRP CodeSigning - Build files - sha256 only'
|
||||
inputs:
|
||||
|
||||
Reference in New Issue
Block a user