Skip to content

Commit b7b3001

Browse files
authored
Enable windows tests in helix nightly (#26718)
* Run windows tests on helix nightly * Update Helix.Common.props * Update eng/targets/Helix.Common.props
1 parent 9402ebf commit b7b3001

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

eng/targets/Helix.Common.props

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,24 @@
2626
</ItemGroup>
2727

2828
<!-- queues for helix-matrix.yml pipeline -->
29-
<ItemGroup Condition="'$(IsWindowsOnlyTest)' != 'true' AND '$(TargetArchitecture)' == 'x64' AND '$(IsHelixDaily)' == 'true'">
30-
<HelixAvailableTargetQueue Include="Windows.7.Amd64.Open" Platform="Windows" />
31-
<HelixAvailableTargetQueue Include="Windows.81.Amd64.Open" Platform="Windows" />
32-
<HelixAvailableTargetQueue Include="Windows.10.Amd64.Server20H1.Open" Platform="Windows" />
29+
<ItemGroup Condition="'$(TargetArchitecture)' == 'x64' AND '$(IsHelixDaily)' == 'true' AND '$(IsWindowsOnlyTest)' != 'true'">
3330
<HelixAvailableTargetQueue Include="Ubuntu.1804.Amd64.Open" Platform="Linux" />
3431
<HelixAvailableTargetQueue Include="Ubuntu.2004.Amd64.Open" Platform="Linux" />
3532
<HelixAvailableTargetQueue Include="OSX.1100.Amd64.Open" Platform="Linux" />
3633
<HelixAvailableTargetQueue Include="Debian.9.Amd64.Open" Platform="Linux" />
3734
<HelixAvailableTargetQueue Include="Redhat.7.Amd64.Open" Platform="Linux" />
3835
<HelixAvailableTargetQueue Include="(Fedora.28.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:fedora-28-helix-09ca40b-20190508143249" Platform="Linux" />
36+
</ItemGroup>
37+
<ItemGroup Condition="'$(TargetArchitecture)' == 'x64' AND '$(IsHelixDaily)' == 'true'">
38+
<HelixAvailableTargetQueue Include="Windows.7.Amd64.Open" Platform="Windows" />
39+
<HelixAvailableTargetQueue Include="Windows.81.Amd64.Open" Platform="Windows" />
3940
</ItemGroup>
4041

4142
<!-- arm64 queues for helix-matrix.yml pipeline -->
42-
<ItemGroup Condition="'$(IsWindowsOnlyTest)' != 'true' AND '$(TargetArchitecture)' == 'arm64' AND '$(IsHelixDaily)' == 'true'">
43-
<HelixAvailableTargetQueue Include="Windows.10.Arm64.Open" Platform="Windows" />
43+
<ItemGroup Condition="'$(TargetArchitecture)' == 'arm64' AND '$(IsHelixDaily)' == 'true' AND '$(IsWindowsOnlyTest)' != 'true'">
4444
<HelixAvailableTargetQueue Include="(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036" Platform="Linux" />
4545
</ItemGroup>
46+
<ItemGroup Condition="'$(TargetArchitecture)' == 'arm64' AND '$(IsHelixDaily)' == 'true'">
47+
<HelixAvailableTargetQueue Include="Windows.10.Arm64.Open" Platform="Windows" />
48+
</ItemGroup>
4649
</Project>

0 commit comments

Comments
 (0)