-
Notifications
You must be signed in to change notification settings - Fork 2k
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
dist/tools: Add Doxygen as a Tool for CI #21300
base: master
Are you sure you want to change the base?
Conversation
So if I want/insist on using the local doxygen, then I should just export DOXYGEN=/my/path/to/doxygen, and I'm good? |
The default is always the local One downside of this PR is that it can only use released versions, not the latest master for example. |
I think this is a better way of doing it then #21295, because this makes it easier to replicate the CI behavior locally. I just noticed one thing when i tried
I think it is, because i don't have |
We could add a general check in the |
I added a check to the @Baertig it would be nice if you could test that on your system :) |
I don't really want to feature-creep myself (again), but I thought about another option: Then the Version warning introduced in #21277 could be extended to hint the user to that possibility and it would be possible to use all targets ( |
Wouldn't that only work for x86 Linux machines or am I missing anything? |
It would only work for x64 Linux machines, yes. |
Inspired by the idea to set a version in Doxygen and the question that @OlegHahm had, I added a rather extensive fixup that performs a check if the system is Furthermore, there is an option to use Calling
Calling
Calling
Calling
Building Doxygen inside of my WSL on a single thread takes FOR EVER and on multiple threads it takes so much RAM that the compiler crashes 😅 |
works for me. i.e. the make script reports an error. |
I added some documentation to the This PKG is somewhat unusual in that it doesn't use the provided Long story short: this is ready for review and testing. You can follow the procedure I showed here: #21300 (comment) |
Contribution description
This is an alternative approach for #21295. Instead of trying to handle Doxygen inside of the Docker container, we just add Doxygen as a package in RIOT. Therefore it can be managed inside the RIOT repository.
The changes to the CI script(s) are minimal, only the target has to be changed from
make doc
tomake doc-ci
and Doxygen does not have to be installed as a package anymore (but it could be so that all dependencies are there).TODO: It would probably be a good idea to pass theDone.DOXYGEN_MIN_VERSION
fromdoc/doxygen/Makefile
todist/tools/doxygen/Makefile
, so that we really truly only have one single spot where the Doxygen version is maintained.RFC: Would it be better to build Doxygen instead of downloading the binaries? IMO that would add a lot of unncessary compile time to the CI process.
Testing procedure
Execute
make doc-ci
and observe Doxygen being downloaded and the documentation being built.Issues/PRs references
Alternative approach to fix #21106.