lol

xgboost: disable TestXGBoostLib when cudaSupport

...because the test suite includes .cu files so it won't run in the
sandbox, isolated from gpu

+6
+6
pkgs/development/libraries/xgboost/default.nix
··· 43 43 44 44 inherit doCheck; 45 45 46 + # By default, cmake build will run ctests with all checks enabled 47 + # If we're building with cuda, we run ctest manually so that we can skip the GPU tests 48 + checkPhase = lib.optionalString cudaSupport '' 49 + ctest --force-new-ctest-process ${lib.optionalString cudaSupport "-E TestXGBoostLib"} 50 + ''; 51 + 46 52 installPhase = let 47 53 libname = "libxgboost${stdenv.hostPlatform.extensions.sharedLibrary}"; 48 54 in ''