Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Oct 21, 2024
1 parent 37a3315 commit a00a711
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/devops/automation/templates/tests/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ steps:
# use a diff step depending if we have been trigger by a pipeline of by a PR/Commit
- ${{ if or(contains(variables['Build.Reason'], 'ResourceTrigger'), contains(variables['Build.Reason'], 'BuildCompletion'), contains(variables['Build.DefinitionName'], 'xamarin-macios-ci-tests'), contains(variables['Build.DefinitionName'], 'xamarin-macios-pr-tests')) }}:
- bash: |
ls -la "$PIPELINE_WORKSPACE)/macios" || true
rm -Rf "$PIPELINE_WORKSPACE)/macios"
ls -la "$PIPELINE_WORKSPACE/macios" || true
rm -Rf "$PIPELINE_WORKSPACE/macios"
displayName: "Remove previously downloaded artifacts"
condition: always()
Expand All @@ -174,7 +174,7 @@ steps:
artifact: package-test-libraries

- pwsh: |
Get-ChildItem -Path "$(Pipeline.Workspace)/macios" -Recurse -Force | Format-Table -AutoSize
Get-ChildItem -Path "$(Pipeline.Workspace)/macios" -Recurse -Force | Format-Table -AutoSize | Out-String -Width 1000
displayName: 'List downloaded macios artifacts'
timeoutInMinutes: 5
Expand Down Expand Up @@ -210,7 +210,7 @@ steps:

# print the downloads to make our life easier on debug
- pwsh: |
Get-ChildItem -Path $(Build.SourcesDirectory)/artifacts -Recurse -Force | Format-Table -AutoSize
Get-ChildItem -Path $(Build.SourcesDirectory)/artifacts -Recurse -Force | Format-Table -AutoSize | Out-String -Width 1000
displayName: 'List downloaded artifacts'
timeoutInMinutes: 5

Expand Down

6 comments on commit a00a711

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.