diff options
author | Someone Serge <sergei.kozlukov@aalto.fi> | 2023-12-29 16:21:50 +0000 |
---|---|---|
committer | Philip Taron <philip.taron@gmail.com> | 2023-12-31 13:14:58 -0800 |
commit | 356ea17e0f92bfbbf28a4f69261bed48eff68d9c (patch) | |
tree | 2845600e58b016ebeec2ba23b7903be634fa1806 | |
parent | a5c088d8c698299b973d2709153e5d95295606d9 (diff) |
flake.nix: expose checks
-rw-r--r-- | flake.nix | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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; }; }; } |