mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Switch to DownloadBuildArtifacts task (#10597)
* Switch to download build artifact task * Update download location * Fix path
This commit is contained in:
@@ -65,17 +65,17 @@ steps:
|
|||||||
node build/azure-pipelines/mixin
|
node build/azure-pipelines/mixin
|
||||||
displayName: Mix in quality
|
displayName: Mix in quality
|
||||||
|
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadBuildArtifacts@0
|
||||||
inputs:
|
inputs:
|
||||||
buildType: 'current'
|
buildType: 'current'
|
||||||
targetPath: '$(Build.SourcesDirectory)/.build'
|
downloadPath: '$(Build.SourcesDirectory)/.build'
|
||||||
artifactName: drop
|
artifactName: drop
|
||||||
itemPattern: |
|
itemPattern: |
|
||||||
drop/linux/server/*.tar.gz
|
drop/linux/server/*.tar.gz
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
set -e
|
set -e
|
||||||
for f in $(Build.SourcesDirectory)/.build/linux/server/*.tar.gz
|
for f in $(Build.SourcesDirectory)/.build/drop/linux/server/*.tar.gz
|
||||||
do
|
do
|
||||||
tar -C $(agent.builddirectory) -zxvf $f
|
tar -C $(agent.builddirectory) -zxvf $f
|
||||||
rm $f
|
rm $f
|
||||||
|
|||||||
Reference in New Issue
Block a user