Skip to content

Commit

Permalink
Move release build leg to dnceng pool (#8789)
Browse files Browse the repository at this point in the history
  • Loading branch information
rainersigwald authored May 23, 2023
2 parents 8ea9a7f + 6249ac4 commit 71bc6e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .vsts-dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,12 @@ jobs:
- job: FullReleaseOnWindows
displayName: "Windows Full Release (no bootstrap)"
pool:
vmImage: 'windows-2022'
${{ if eq(variables['System.TeamProject'], 'public') }}:
name: NetCore-Public
demands: ImageOverride -equals windows.vs2022preview.amd64.open
${{ if ne(variables['System.TeamProject'], 'public') }}:
name: VSEngSS-MicroBuild2022-1ES
demands: agent.os -equals Windows_NT
steps:
- task: BatchScript@1
displayName: cibuild.cmd
Expand Down
2 changes: 1 addition & 1 deletion src/Utilities.UnitTests/ToolTask_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ protected override string GenerateCommandLineCommands()
/// predefined amount of time. The first execution may time out, but all following ones won't. It is expected
/// that all following executions return success.
/// </remarks>
[Theory]
[Theory(Skip = "https://github.com/dotnet/msbuild/issues/8750")]
[InlineData(1, 1, 1, -1)] // Normal case, no repeat.
[InlineData(3, 1, 1, -1)] // Repeat without timeout.
[InlineData(3, 10000, 1, 1000)] // Repeat with timeout.
Expand Down

0 comments on commit 71bc6e0

Please sign in to comment.