We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff1ac5c commit 4a4a753Copy full SHA for 4a4a753
.devops/nix/package.nix
@@ -202,6 +202,7 @@ effectiveStdenv.mkDerivation (finalAttrs: {
202
(cmakeBool "LLAMA_BUILD_EXAMPLES" buildExamples)
203
(cmakeBool "LLAMA_BUILD_SERVER" buildServer)
204
(cmakeBool "BLA_PREFER_PKGCONFIG" true)
205
+ (cmakeFeature "CMAKE_CTEST_ARGUMENTS" "--exclude-regex;test-eval-callback") # Uses Internet
206
]
207
++ optionals useCuda [
208
(
@@ -233,6 +234,8 @@ effectiveStdenv.mkDerivation (finalAttrs: {
233
234
cp $src/include/llama.h $out/include/
235
'';
236
237
+ doCheck = true;
238
+
239
meta = {
240
# Configurations we don't want even the CI to evaluate. Results in the
241
# "unsupported platform" messages. This is mostly a no-op, because
0 commit comments