Skip to content

Commit d68fb72

Browse files
committed
added download-artifacts task explicitly. build-and-coverage changed to pipeline-build
1 parent 55560fc commit d68fb72

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.azure-pipelines/buildAndPackage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ stages:
3636
- template: templates/secure-files.yml
3737
parameters:
3838
stageID: 'build'
39-
- template: templates/build/build-and-coverage.yml
39+
- template: templates/build/pipeline-build.yml
4040
- template: templates/build/publish-artifacts.yml
4141

4242
- stage: Maven_Preview
@@ -50,6 +50,7 @@ stages:
5050
runOnce:
5151
deploy:
5252
steps:
53+
- template: templates/download-artifacts.yml
5354
- template: templates/install-java.yml
5455
- template: templates/secure-files.yml
5556
- template: templates/copy-and-build.yml
@@ -68,6 +69,7 @@ stages:
6869
runOnce:
6970
deploy:
7071
steps:
72+
- template: templates/download-artifacts.yml
7173
- template: templates/install-java.yml
7274
- template: templates/secure-files.yml
7375
parameters:
@@ -85,7 +87,7 @@ stages:
8587
runOnce:
8688
deploy:
8789
steps:
88-
- template: templates/install-java.yml
90+
- template: templates/download-artifacts.yml
8991
- template: templates/version-and-release.yml
9092
parameters:
9193
gitConnection: 'microsoftgraphrelease'
File renamed without changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
steps:
2+
- download: none
3+
- task: DownloadPipelineArtifact@2
4+
inputs:
5+
buildType: 'current'
6+
artifactName: 'Drop'
7+
itemPattern: |
8+
**
9+
*
10+
targetPath: '$(Agent.BuildDirectory)/Drop/'

0 commit comments

Comments
 (0)