File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/Hosting/Server.IntegrationTesting/src Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 44
44
<ItemGroup Condition =" '$(TargetArchitecture)' == 'arm64' AND '$(IsHelixDaily)' == 'true' AND '$(IsWindowsOnlyTest)' != 'true'" >
45
45
<
HelixAvailableTargetQueue Include =
" (Debian.9.Arm64.Open)[email protected] /dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036" Platform =
" Linux" />
46
46
</ItemGroup >
47
- <ItemGroup Condition =" '$(IsWindowsOnlyTest)' != 'true' AND '$( TargetArchitecture)' == 'arm64' AND '$(IsHelixDaily)' == 'true'" >
47
+ <ItemGroup Condition =" '$(TargetArchitecture)' == 'arm64' AND '$(IsHelixDaily)' == 'true'" >
48
48
<HelixAvailableTargetQueue Include =" Windows.10.Arm64v8.Open" Platform =" Windows" />
49
49
</ItemGroup >
50
50
</Project >
Original file line number Diff line number Diff line change 1
- // Copyright (c) .NET Foundation. All rights reserved.
1
+ // Copyright (c) .NET Foundation. All rights reserved.
2
2
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3
3
4
4
using System ;
@@ -124,9 +124,11 @@ private void ResolveDefaultArchitecture()
124
124
{
125
125
switch ( RuntimeInformation . OSArchitecture )
126
126
{
127
+ case Architecture . Arm :
127
128
case Architecture . X86 :
128
129
Architectures . Add ( RuntimeArchitecture . x86 ) ;
129
130
break ;
131
+ case Architecture . Arm64 :
130
132
case Architecture . X64 :
131
133
Architectures . Add ( RuntimeArchitecture . x64 ) ;
132
134
break ;
You can’t perform that action at this time.
0 commit comments