summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSomeone Serge <sergei.kozlukov@aalto.fi>2024-03-27 16:17:46 +0000
committerSomeone <newkozlukov@gmail.com>2024-03-27 19:18:55 +0000
commit53c7ec53d5eca26b2c0c648605543a5fa6c12817 (patch)
tree562990be0dd4c3ed22121e5b1d169b133fc688c6
parente5b89a441af23a74b861b0bf8db3239139041876 (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.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 45f9deda..9a528a66 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;
+ };
};
};
}