]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
nix: ci: dont test cuda and rocm (for now)
authorSomeone Serge <redacted>
Wed, 27 Mar 2024 16:17:46 +0000 (16:17 +0000)
committerSomeone <redacted>
Wed, 27 Mar 2024 19:18:55 +0000 (19:18 +0000)
Until https://github.com/ggerganov/llama.cpp/issues/6346 is resolved

flake.nix

index 45f9deda0beec073f3c440eb3bd702d68611d284..9a528a66b53035b9dbc185ef8f0b9ab7a2119c29 100644 (file)
--- a/flake.nix
+++ b/flake.nix
               };
 
             # 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;
+            # `nix flake check`.
+            #
+            # We could test all outputs e.g. as `checks = confg.packages`.
+            #
+            # TODO: Build more once https://github.com/ggerganov/llama.cpp/issues/6346 has been addressed
+            checks = {
+              inherit (config.packages) default vulkan;
+            };
           };
       };
 }