From 53c7ec53d5eca26b2c0c648605543a5fa6c12817 Mon Sep 17 00:00:00 2001 From: Someone Serge Date: Wed, 27 Mar 2024 16:17:46 +0000 Subject: [PATCH] nix: ci: dont test cuda and rocm (for now) Until https://github.com/ggerganov/llama.cpp/issues/6346 is resolved --- flake.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 45f9deda0..9a528a66b 100644 --- a/flake.nix +++ b/flake.nix @@ -168,9 +168,14 @@ }; # 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; + }; }; }; }