summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSomeone Serge <sergei.kozlukov@aalto.fi>2023-12-29 16:21:50 +0000
committerPhilip Taron <philip.taron@gmail.com>2023-12-31 13:14:58 -0800
commit356ea17e0f92bfbbf28a4f69261bed48eff68d9c (patch)
tree2845600e58b016ebeec2ba23b7903be634fa1806
parenta5c088d8c698299b973d2709153e5d95295606d9 (diff)
flake.nix: expose checks
-rw-r--r--flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 920a7990..8d0f095d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -111,6 +111,11 @@
// lib.optionalAttrs (system == "x86_64-linux") {
rocm = config.legacyPackages.llamaPackagesRocm.llama-cpp;
};
+
+ # Packages exposed in `.#checks` will be built by the CI and by
+ # `nix flake check`. Currently we expose all packages, but we could
+ # make more granular choices
+ checks = config.packages;
};
};
}