Skip to content

Commit 70167f8

Browse files
Added ppc64le architecture to support testcases on power machine. (#48638)
1 parent 90e8089 commit 70167f8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Hosting/Server.IntegrationTesting/src/Common/RuntimeArchitecture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ public enum RuntimeArchitecture
77
{
88
arm64,
99
x64,
10-
x86
10+
x86,
11+
ppc64le //Power Architecture
1112
}

src/Hosting/Server.IntegrationTesting/src/Common/RuntimeArchitectures.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public static RuntimeArchitecture Current
1616
Architecture.Arm64 => RuntimeArchitecture.arm64,
1717
Architecture.X64 => RuntimeArchitecture.x64,
1818
Architecture.X86 => RuntimeArchitecture.x86,
19+
Architecture.Ppc64le => RuntimeArchitecture.ppc64le,
1920
_ => throw new NotImplementedException($"Unknown RuntimeInformation.OSArchitecture: {RuntimeInformation.OSArchitecture.ToString()}"),
2021
};
2122
}

0 commit comments

Comments
 (0)