Skip to content

Commit

Permalink
nix: ci: dont test cuda and rocm (for now)
Browse files Browse the repository at this point in the history
Until #6346 is resolved
  • Loading branch information
SomeoneSerge committed Mar 27, 2024
1 parent e5b89a4 commit 53c7ec5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions flake.nix
Expand Up @@ -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;
};
};
};
}

0 comments on commit 53c7ec5

Please sign in to comment.