Skip to content

Commit

Permalink
Device is always arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarinho committed Dec 19, 2023
1 parent b98fcec commit 6b504a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/devices/ios.cake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ string DEVICE_OS = "";
string PLATFORM = TEST_DEVICE.ToLower().Contains("simulator") ? "iPhoneSimulator" : "iPhone";
string DOTNET_PLATFORM = TEST_DEVICE.ToLower().Contains("simulator") ?
$"iossimulator-{System.Runtime.InteropServices.RuntimeInformation.OSArchitecture.ToString().ToLower()}"
: $"ios-{System.Runtime.InteropServices.RuntimeInformation.OSArchitecture.ToString().ToLower()}";
: $"ios-arm64";
string CONFIGURATION = Argument("configuration", "Debug");
bool DEVICE_CLEANUP = Argument("cleanup", true);
string TEST_FRAMEWORK = "net472";
Expand Down

0 comments on commit 6b504a9

Please sign in to comment.