-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake: add ctest support to setup hook #50323
Conversation
Is there any way to get CMake to generate Makefiles with a check target? That would be nice if possible. |
Using |
Timed out, unknown build status on x86_64-linux (full log) Attempted: cmake Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: cmake Partial log (click to expand)
|
Timed out, unknown build status on x86_64-darwin (full log) Attempted: cmake Partial log (click to expand)
|
We really only support one backend in makefile, right now. According to this doc, "make test" should already work: https://gitlab.kitware.com/cmake/community/wikis/doc/ctest/Testing-With-CTest#simple-testing Do you have any specific packages where tests are not being run right now when they should be? |
I think it’s a mistake to use Ninja + CMake in Nixpkgs. At least we shouldn’t do it in the per-package basis that happens right now in a few places. It’s definitely okay to use Ninja when the package has a hand-written ninja file (or in Meson’s case where the developers stubbornly /refuse/ to write a Make backend). But in the CMake case we should do the same thing everywhere. I do think it would be a good idea to add a check phase for Ninja when we are forced to use it, though.
|
Can you elaborate why ninja is a problem? Make was not really designed as a backend for generated Makefiles. On the other hand ninja is not supposed to be handwritten. |
Mostly for legacy reasons - Make has been around for long enough that it seems worth supporting. Ninja depends on the Python runtime without really offering any clear advantages to Make. The time difference appears to be almost negligible: http://david.rothlis.net/ninja-benchmark/ Of course, it's still worth supporting Ninja as a setup hook. I just think we should use Makefiles when they're available to us for consistency. |
|
I suppose it's not hurting anything too much. My main rationale is that you should use as few dependencies as possible. Make is an implicit dependency on anything that use stdenv. Might as well use that when it is available. It would definitely be nice if we could do some bootstrapping and avoid the build-time python dependency. Basic shell scripts could probably work? A static executable doesn't seem very cross platform though. Anyway, I've opened a separate PR that adds the checPhase in the ninja setup hook: |
We could also set |
I didn't realize that meson already had a check phase! That does change things but I am still partial to doing this all in Ninja. In setup.sh, build, install, & check are all handled by the same program (make). Ninja is supposed to be a make replacement so it should also handle the same phases. CMake, Meson, gyp, configure, etc. are all "generators" so they should only override the configure phase. This should hopefully lead to less phases in total and a clearer separation between build "generators" like CMake & Meson from "runners" like Make & Ninja. |
cmakeCheckPhase() { | ||
runHook preCheck | ||
|
||
ctest --extra-verbose |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe ctest --output-on-failure
, without --extra-verbose
?
Closing in favour of #50527 |
Motivation for this change
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)