From bf3350bc07922c6fbd5ecfa3efb7cb9c4227b59c Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Tue, 07 Jan 2025 03:25:58 +0700 Subject: [PATCH] Don't run clippy, etc on all architectures and remove x86_64-darwin --- 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; }; }; } // -- rgit 0.1.4