Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions azure-pipelines-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,14 @@ extends:

- template: /eng/restore-internal-tools.yml

# - powershell: ./eng/scripts/InstallProcDump.ps1
# displayName: Install ProcDump
- powershell: ./eng/scripts/InstallProcDump.ps1
displayName: Install ProcDump

# - powershell: ./eng/scripts/StartDumpCollectionForHangingBuilds.ps1
# $(ProcDumpPath)procdump.exe artifacts/log/$(_BuildConfig)
# (Get-Date).AddMinutes(60)
# devenv, xunit.console, xunit.console.x86
# displayName: Start background dump collection
- powershell: ./eng/scripts/StartDumpCollectionForHangingBuilds.ps1
$(ProcDumpPath)procdump.exe artifacts/log/$(_BuildConfig)
(Get-Date).AddMinutes(60)
devenv, xunit.console, xunit.console.x86
displayName: Start background dump collection

- task: NuGetAuthenticate@1

Expand Down Expand Up @@ -239,10 +239,10 @@ extends:
displayName: Run Integration Tests
condition: and(eq(variables['RunIntegrationTests'], true), succeeded(), in(variables['Build.Reason'], 'PullRequest'))

# - powershell: ./eng/scripts/FinishDumpCollectionForHangingBuilds.ps1 artifacts/log/$(_BuildConfig)
# displayName: Finish background dump collection
# continueOnError: true
# condition: always()
- powershell: ./eng/scripts/FinishDumpCollectionForHangingBuilds.ps1 artifacts/log/$(_BuildConfig)
displayName: Finish background dump collection
continueOnError: true
condition: always()

- task: 1ES.PublishPipelineArtifact@1
inputs:
Expand Down
22 changes: 11 additions & 11 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ stages:
command: custom
arguments: 'locals all -clear'

# - powershell: ./eng/scripts/InstallProcDump.ps1
# displayName: Install ProcDump
- powershell: ./eng/scripts/InstallProcDump.ps1
displayName: Install ProcDump

# - powershell: ./eng/scripts/StartDumpCollectionForHangingBuilds.ps1
# $(ProcDumpPath)procdump.exe artifacts/log/$(_BuildConfig)
# (Get-Date).AddMinutes(60)
# devenv, xunit.console, xunit.console.x86
# displayName: Start background dump collection
- powershell: ./eng/scripts/StartDumpCollectionForHangingBuilds.ps1
$(ProcDumpPath)procdump.exe artifacts/log/$(_BuildConfig)
(Get-Date).AddMinutes(60)
devenv, xunit.console, xunit.console.x86
displayName: Start background dump collection

# Don't create a binary log until we can customize the name
# https://github.com/dotnet/arcade/pull/12988
Expand Down Expand Up @@ -160,10 +160,10 @@ stages:
displayName: Run Integration Tests
condition: and(eq(variables['RunIntegrationTests'], true), succeeded(), in(variables['Build.Reason'], 'PullRequest'))

# - powershell: ./eng/scripts/FinishDumpCollectionForHangingBuilds.ps1 artifacts/log/$(_BuildConfig)
# displayName: Finish background dump collection
# continueOnError: true
# condition: always()
- powershell: ./eng/scripts/FinishDumpCollectionForHangingBuilds.ps1 artifacts/log/$(_BuildConfig)
displayName: Finish background dump collection
continueOnError: true
condition: always()

- publish: artifacts/log/$(_BuildConfig)
artifact: $(Agent.Os)_$(Agent.JobName) Attempt $(System.JobAttempt) Logs
Expand Down