Skip to content

Commit

Permalink
tests/lean: disable lean tests on x86_64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 9, 2025
1 parent bca43a2 commit 67de848
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/test-sources/plugins/by-name/lean/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
{ lib, pkgs, ... }:
let
platform = pkgs.stdenv.hostPlatform;

# TODO: `cadical`, one of `lean4`'s dependencies is broken on x86_64-darwin
# https://github.com/NixOS/nixpkgs/pull/371275
doRun = !(platform.isDarwin && platform.isx86_64);
in
lib.optionalAttrs doRun {
empty = {
plugins.lean.enable = true;
};
Expand Down

0 comments on commit 67de848

Please sign in to comment.