Skip to content

Commit cd9a2dd

Browse files
committed
Fix CI builds of generated artifacts.
1 parent f87e203 commit cd9a2dd

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

.azure-pipelines/openxr-sdk-source.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,16 @@ stages:
6161
vmImage: 'ubuntu-16.04'
6262
container: khronosgroup/docker-images:openxr-sdk
6363
steps:
64-
- download: current
65-
artifact: sdk-tarball
66-
displayName: Download archived OpenXR-SDK
64+
- task: DownloadPipelineArtifact@2
65+
inputs:
66+
source: current
67+
artifact: sdk-tarball
68+
displayName: Download archived OpenXR-SDK
69+
path: '$(Pipeline.Workspace)'
6770
- script: ls -la
68-
- script: ls -la sdk-tarball || true
71+
displayName: List files in directory
72+
- script: ls -la sdk-tarball* || true
73+
displayName: List tarball-related files
6974
- task: ExtractFiles@1
7075
inputs:
7176
archiveFilePatterns: '$(Pipeline.Workspace)/*.tar.gz'
@@ -83,9 +88,12 @@ stages:
8388
pool:
8489
vmImage: 'windows-latest'
8590
steps:
86-
- download: current
87-
artifact: sdk-tarball
88-
displayName: Download archived OpenXR-SDK
91+
- task: DownloadPipelineArtifact@2
92+
inputs:
93+
source: current
94+
artifact: sdk-tarball
95+
displayName: Download archived OpenXR-SDK
96+
path: '$(Pipeline.Workspace)'
8997

9098
- task: ExtractFiles@1
9199
inputs:

0 commit comments

Comments
 (0)