Skip to content

Commit

Permalink
move artifacts to artifacts folder
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jan 29, 2020
1 parent 5ef8175 commit a71a9b6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Source/build/jobs/sandbox-uitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ jobs:
workspace:
clean: all
steps:
- powershell: mkdir Artifacts
displayName: Create Artifact Directory
- task: DownloadPipelineArtifact@2
displayName: Download UI Test Project
inputs:
artifactName: XamarinUITests
targetPath: '$(Pipeline.Workspace)/XamarinUITests/'
targetPath: '$(Pipeline.Workspace)/Artifacts/'
- task: DownloadPipelineArtifact@2
displayName: Download ${{ parameters.artifactName }}
inputs:
artifactName: ${{ parameters.artifactName }}
targetPath: '$(Pipeline.Workspace)/${{ parameters.artifactName }}/'
targetPath: '$(Pipeline.Workspace)/Artifacts/'

- powershell: |
Write-Host "Pipeline Workspace: $($env:PIPELINE_WORKSPACE)"
Expand All @@ -38,9 +40,9 @@ jobs:
- task: AppCenterTest@1
displayName: 'Run UI Tests ${{ parameters.artifactName }} with App Center'
inputs:
appFile: ${{ parameters.artifactName }}/${{ parameters.appFile }}
appFile: Artifacts/${{ parameters.appFile }}
frameworkOption: uitest
uiTestBuildDirectory: $(Pipeline.Workspace)/XamarinUITests/
uiTestBuildDirectory: $(Pipeline.Workspace)/Artifacts/
serverEndpoint: 'Prism-AppCenter'
appSlug: 'Prism/${{ parameters.appName }}'
devices: ${{ parameters.devices }}

0 comments on commit a71a9b6

Please sign in to comment.