Skip to content

Commit

Permalink
simplifying paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jan 29, 2020
1 parent a71a9b6 commit 34eb3a7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Source/build/jobs/sandbox-uitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,16 @@ 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)/Artifacts/'
targetPath: '$(Pipeline.Workspace)'
- task: DownloadPipelineArtifact@2
displayName: Download ${{ parameters.artifactName }}
inputs:
artifactName: ${{ parameters.artifactName }}
targetPath: '$(Pipeline.Workspace)/Artifacts/'
targetPath: '$(Pipeline.Workspace)'

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

0 comments on commit 34eb3a7

Please sign in to comment.