Skip to content

Commit

Permalink
Stop using Helix queues that are about to be disabled. (#6650)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmahone committed Mar 17, 2022
1 parent dc43fe3 commit f7bee3f
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
parameters:
dependsOn: ''
rerunPassesRequiredToAvoidFailure: 5
minimumExpectedTestsExecutedCount: 3000
minimumExpectedTestsExecutedCount: 2000
checkJobAttempt: false
pgoArtifact: ''

Expand Down
16 changes: 5 additions & 11 deletions build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,16 @@ parameters:
# if 'useBuildOutputFromBuildId' is set, we will default to using a build from this pipeline:
useBuildOutputFromPipeline: $(System.DefinitionId)
matrix:
Debug_x86:
buildPlatform: 'x86'
buildConfiguration: 'debug'
# %3b is the escape code for ';' which is used as the delimiter
openHelixTargetQueues: 'windows.10.amd64.clientrs2.open.xaml%3bwindows.10.amd64.clientrs5.open.xaml'
closedHelixTargetQueues: 'windows.10.amd64.clientrs2.xaml%3bwindows.10.amd64.clientrs5.xaml'
Release_x86:
buildPlatform: 'x86'
buildConfiguration: 'release'
openHelixTargetQueues: 'windows.10.amd64.client19h1.open.xaml%3bwindows.10.amd64.clientrs3.open.xaml'
closedHelixTargetQueues: 'windows.10.amd64.client19h1.xaml%3bwindows.10.amd64.clientrs3.xaml'
openHelixTargetQueues: 'windows.10.amd64.clientrs5.open.xaml'
closedHelixTargetQueues: 'bwindows.10.amd64.clientrs5.xaml'
Release_x64:
buildPlatform: 'x64'
buildConfiguration: 'release'
openHelixTargetQueues: 'windows.10.amd64.clientrs4.open.xaml'
closedHelixTargetQueues: 'windows.10.amd64.clientrs4.xaml'
openHelixTargetQueues: 'Windows.10.Amd64.Client21H1.Open.xaml'
closedHelixTargetQueues: 'Windows.10.Amd64.Client21H1.xaml'

jobs:
- job: ${{ parameters.name }}
Expand All @@ -42,7 +36,7 @@ jobs:
matrix: ${{ parameters.matrix }}
variables:
artifactsDir: $(Build.SourcesDirectory)\Artifacts
helixCommonArgs: '/binaryLogger:$(Build.SourcesDirectory)/${{parameters.name}}.$(buildPlatform).$(buildConfiguration).binlog /p:HelixBuild=$(Build.BuildId).$(buildPlatform).$(buildConfiguration) /p:Platform=$(buildPlatform) /p:Configuration=$(buildConfiguration) /p:HelixType=${{parameters.helixType}} /p:TestSuite=${{parameters.testSuite}} /p:ProjFilesPath=$(Build.ArtifactStagingDirectory) /p:rerunPassesRequiredToAvoidFailure=${{parameters.rerunPassesRequiredToAvoidFailure}}'
helixCommonArgs: '/binaryLogger:$(Build.SourcesDirectory)/${{parameters.name}}.$(buildPlatform).$(buildConfiguration).binlog /p:HelixBuild=$(Build.BuildId).$(buildPlatform).$(buildConfiguration) /p:Platform=$(buildPlatform) /p:Configuration=$(buildConfiguration) /p:HelixType=${{parameters.helixType}}$(buildPlatform)$(buildConfiguration) /p:TestSuite=${{parameters.testSuite}} /p:ProjFilesPath=$(Build.ArtifactStagingDirectory) /p:rerunPassesRequiredToAvoidFailure=${{parameters.rerunPassesRequiredToAvoidFailure}}'


steps:
Expand Down
2 changes: 1 addition & 1 deletion build/MUX-CI.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr)
variables:
minimumExpectedTestsExecutedCount: 3000 # Sanity check for minimum expected tests to be reported
minimumExpectedTestsExecutedCount: 2000 # Sanity check for minimum expected tests to be reported
rerunPassesRequiredToAvoidFailure: 5
jobs:
- job: Build
Expand Down
2 changes: 1 addition & 1 deletion build/MUX-PR.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr)
variables:
minimumExpectedTestsExecutedCount: 3000 # Sanity check for minimum expected tests to be reported
minimumExpectedTestsExecutedCount: 2000 # Sanity check for minimum expected tests to be reported
rerunPassesRequiredToAvoidFailure: 5
jobs:
- job: Setup
Expand Down
2 changes: 2 additions & 0 deletions dev/CommonStyles/APITests/CalendarViewTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ namespace Windows.UI.Xaml.Tests.MUXControls.ApiTests
[TestClass]
public class CalendarViewTests : ApiTestBase
{
//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void VerifyVisualTree()
{
CalendarView calendarView = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,9 @@ public void RevealHoverLightPositionTests()
}
}

//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void RevealButtonStates_Values()
{
if (!PlatformConfiguration.IsOsVersionGreaterThan(OSVersion.Redstone2))
Expand Down Expand Up @@ -390,7 +392,9 @@ public void RevealButtonStates_Values()
}
}

//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void RevealButtonStates_FastRelease_Values()
{
if (!PlatformConfiguration.IsOsVersionGreaterThan(OSVersion.Redstone2))
Expand Down Expand Up @@ -426,7 +430,9 @@ public void RevealButtonStates_FastRelease_Values()
}
}

//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void RevealButtonStates_SlowRelease_Values()
{
if (!PlatformConfiguration.IsOsVersionGreaterThan(OSVersion.Redstone2))
Expand Down Expand Up @@ -462,8 +468,9 @@ public void RevealButtonStates_SlowRelease_Values()
}
}


//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void RevealHoverLightPosition_Values()
{
if (PlatformConfiguration.IsOSVersionLessThan(OSVersion.Redstone2))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,17 @@ public void RefreshRequestedHandlersWorkOnEitherContainerOrVisualizerOrBoth()
}
}

//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void InteractionOnImageTest()
{
InteractionOnImageTestPrivate(withInfoProvider: false);
}

//Issue #6649 Some tests fail when run on OS 21H1
[TestMethod]
[TestProperty("Ignore", "True")]
public void InteractionOnImageWithInfoProviderTest()
{
InteractionOnImageTestPrivate(withInfoProvider: true);
Expand Down

0 comments on commit f7bee3f

Please sign in to comment.