Skip to content

Commit

Permalink
Added ppc64le architecture to support testcases on power machine. (#4…
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshjadhav9 authored Jun 16, 2023
1 parent 90e8089 commit 70167f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ public enum RuntimeArchitecture
{
arm64,
x64,
x86
x86,
ppc64le //Power Architecture
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public static RuntimeArchitecture Current
Architecture.Arm64 => RuntimeArchitecture.arm64,
Architecture.X64 => RuntimeArchitecture.x64,
Architecture.X86 => RuntimeArchitecture.x86,
Architecture.Ppc64le => RuntimeArchitecture.ppc64le,
_ => throw new NotImplementedException($"Unknown RuntimeInformation.OSArchitecture: {RuntimeInformation.OSArchitecture.ToString()}"),
};
}
Expand Down

0 comments on commit 70167f8

Please sign in to comment.