diff options
author | Someone Serge <sergei.kozlukov@aalto.fi> | 2024-03-27 16:17:46 +0000 |
---|---|---|
committer | Someone <newkozlukov@gmail.com> | 2024-03-27 19:18:55 +0000 |
commit | 53c7ec53d5eca26b2c0c648605543a5fa6c12817 (patch) | |
tree | 562990be0dd4c3ed22121e5b1d169b133fc688c6 | |
parent | e5b89a441af23a74b861b0bf8db3239139041876 (diff) |
nix: ci: dont test cuda and rocm (for now)
Until https://github.com/ggerganov/llama.cpp/issues/6346 is resolved
-rw-r--r-- | flake.nix | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -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; + }; }; }; } |