Skip to content

Commit

Permalink
Stop testing on anything less than .NET 5.0 (for now)
Browse files Browse the repository at this point in the history
This because of dotnet/sdk#14578 collecting dozens of DMP files totalling 3GB of unnecessary DMP files as pipeline artifacts.
  • Loading branch information
AArnott committed Dec 3, 2020
1 parent 83a75da commit 640f1a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ steps:
arguments: --no-build -c $(BuildConfiguration) -f net472 --filter "TestCategory!=FailsInCloudTest$(TestFilter)" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings" /bl:"$(Build.ArtifactStagingDirectory)/build_logs/test_net472.binlog"
testRunTitle: net472-$(Agent.JobName)
condition: succeededOrFailed()
enabled: false # https://github.com/dotnet/sdk/issues/14578

- task: DotNetCoreCLI@2
displayName: dotnet test -f net5.0
Expand All @@ -34,6 +35,7 @@ steps:
arguments: --no-build -c $(BuildConfiguration) -f netcoreapp3.1 --filter "TestCategory!=FailsInCloudTest$(TestFilter)" -v n /p:CollectCoverage=true --settings "$(Build.Repository.LocalPath)/azure-pipelines/$(Agent.OS).runsettings" /bl:"$(Build.ArtifactStagingDirectory)/build_logs/test_netcoreapp3.1.binlog"
testRunTitle: netcoreapp3.1-$(Agent.JobName)
condition: succeededOrFailed()
enabled: false # https://github.com/dotnet/sdk/issues/14578

- powershell: azure-pipelines/variables/_pipelines.ps1
failOnStderr: true
Expand Down

0 comments on commit 640f1a5

Please sign in to comment.