Skip to content

Commit

Permalink
Temporarily disable the KerberosExecutor tests on ARM32 to unblock CI (
Browse files Browse the repository at this point in the history
  • Loading branch information
filipnavara authored Aug 6, 2022
1 parent 7ade2b4 commit 6274ea7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ public class KerberosExecutor : IDisposable
private readonly ITestOutputHelper _testOutputHelper;

public static bool IsSupported { get; } =
RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());

RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()) &&
// ARM32 is cursed (https://github.com/dotnet/runtime/issues/73343)
!PlatformDetection.IsArmProcess;
public const string DefaultAdminPassword = "PLACEHOLDERadmin.";

public const string DefaultUserPassword = "PLACEHOLDERcorrect20";
Expand Down

0 comments on commit 6274ea7

Please sign in to comment.