🏡 index : ~doyle/rgit.git

author Jordan Doyle <jordan@doyle.la> 2025-01-07 3:25:58.0 +07:00:00
committer Jordan Doyle <jordan@doyle.la> 2025-01-07 3:25:58.0 +07:00:00
commit
bf3350bc07922c6fbd5ecfa3efb7cb9c4227b59c [patch]
tree
def2b3845212ea025a818000ef22a2e6e287a66e
parent
507eaf4f805b53c5f073f683d60a7bedac7daae0
download
bf3350bc07922c6fbd5ecfa3efb7cb9c4227b59c.tar.gz

Don't run clippy, etc on all architectures and remove x86_64-darwin



Diff

 flake.nix | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix
index 196e052..370f156 100644
--- a/flake.nix
+++ a/flake.nix
@@ -25,7 +25,10 @@
  outputs = { self, nixpkgs, utils, crane, advisory-db, treefmt-nix, helix, nix-github-actions }:
    {
      githubActions = nix-github-actions.lib.mkGithubMatrix {
        checks = { inherit (self.checks) x86_64-linux x86_64-darwin aarch64-darwin; };
        checks =
          builtins.mapAttrs
            (name: value: if name != "x86_64-linux" then removeAttrs value [ "clippy" "audit" "formatting" "doc" ] else value)
            { inherit (self.checks) x86_64-linux aarch64-darwin; };
      };
    }
    //