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 ggerganov#6346 is resolved
  • Loading branch information
SomeoneSerge authored and hodlen committed Apr 3, 2024
1 parent 816ae3e commit c91d021
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
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 c91d021

Please sign in to comment.