|
1 | 1 | <Project>
|
2 | 2 | <!-- this file is shared between Helix.proj and .csproj files -->
|
3 | 3 | <ItemGroup Condition="'$(IsWindowsOnlyTest)' != 'true'">
|
4 |
| - <HelixAvailablePlatform Include="Windows" /> |
5 |
| - <HelixAvailablePlatform Include="OSX" /> |
6 |
| - <HelixAvailablePlatform Include="Linux" /> |
| 4 | + <HelixAvailablePlatform Include="Windows" Condition=" '$(TargetOsName)' == 'win' " /> |
| 5 | + <HelixAvailablePlatform Include="Linux" Condition=" '$(TargetOsName)' == 'linux' " /> |
7 | 6 | </ItemGroup>
|
8 | 7 |
|
9 | 8 | <ItemGroup Condition="'$(IsWindowsOnlyTest)' == 'true'">
|
10 |
| - <HelixAvailablePlatform Include="Windows" /> |
| 9 | + <HelixAvailablePlatform Include="Windows" Condition=" '$(TargetOsName)' == 'win' " /> |
11 | 10 | </ItemGroup>
|
12 | 11 |
|
13 | 12 | <!-- PR(ci.yaml) required queues -->
|
14 | 13 | <ItemGroup Condition="'$(IsRequiredCheck)' == 'true' AND '$(TargetArchitecture)' == 'x64' AND '$(_UseHelixOpenQueues)' == 'true'">
|
15 | 14 | <HelixAvailableTargetQueue Include="Ubuntu.1804.Amd64.Open" Platform="Linux" />
|
16 | 15 | <HelixAvailableTargetQueue Include="Windows.10.Amd64.Server20H2.Open" Platform="Windows" />
|
17 |
| - <HelixAvailableTargetQueue Include="OSX.1014.Amd64.Open" Platform="Linux" /> |
18 | 16 | </ItemGroup>
|
19 | 17 |
|
20 | 18 | <!-- queues for helix-matrix.yml pipeline -->
|
21 | 19 | <ItemGroup Condition="'$(TargetArchitecture)' == 'x64' AND '$(IsHelixDaily)' == 'true' AND '$(_UseHelixOpenQueues)' == 'true' AND '$(IsWindowsOnlyTest)' != 'true'">
|
22 | 20 | <HelixAvailableTargetQueue Include="Ubuntu.1604.Amd64.Open" Platform="Linux" />
|
23 | 21 | <HelixAvailableTargetQueue Include="Ubuntu.2004.Amd64.Open" Platform="Linux" />
|
24 |
| - <HelixAvailableTargetQueue Include="OSX.1100.Amd64.Open" Platform="Linux" /> |
25 | 22 | <HelixAvailableTargetQueue Include="Debian.9.Amd64.Open" Platform="Linux" />
|
26 | 23 | <HelixAvailableTargetQueue Include="Redhat.7.Amd64.Open" Platform="Linux" />
|
27 | 24 | < HelixAvailableTargetQueue Include= "(Fedora.33.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:fedora-33-helix-20210120000908-a9df267" Platform= "Linux" />
|
|
0 commit comments