Skip to content
Snippets Groups Projects
Commit 5e404eff authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[ci] test for warning-free Doxygen run

parent 5b0939f6
No related branches found
No related tags found
1 merge request!3440cleanup/resolve doxygen fluidsystem warnings
Checking pipeline status
...@@ -151,6 +151,14 @@ doxygen: ...@@ -151,6 +151,14 @@ doxygen:
script: script:
- cd build-cmake - cd build-cmake
- make doxygen_dumux - make doxygen_dumux
- |
if [ -s doc/doxygen/doxyerr.log ]; then
echo "Doxygen warnings generated:"
cat doc/doxygen/doxyerr.log
exit 1;
else
echo "No Doxygen warnings generated"
fi;
needs: needs:
- job: configure - job: configure
artifacts: true artifacts: true
...@@ -234,7 +242,7 @@ test python: ...@@ -234,7 +242,7 @@ test python:
# WARNING: this is a hack, but probably requires an upstream fix in DUNE? # WARNING: this is a hack, but probably requires an upstream fix in DUNE?
# The issue is that the JIT compilation setup fails with cmake errors when # The issue is that the JIT compilation setup fails with cmake errors when
# opm is present. Cmake complains that the SuperLU::SuperLU target is not found # opm is present. Cmake complains that the SuperLU::SuperLU target is not found
# (and maybe also SuiteSparse). OPM has its own find modules for these two, and # (and maybe also SuiteSparse). OPM has its own find modules for these two, and
# (maybe) overwrites some compiler flags. Upstream fixes would be to either allow # (maybe) overwrites some compiler flags. Upstream fixes would be to either allow
# "deactivation" of certain python modules (here: opm), or fixing the incompatibility # "deactivation" of certain python modules (here: opm), or fixing the incompatibility
# of the find modules (although this doesn't appear to be an issue in C++). For now, # of the find modules (although this doesn't appear to be an issue in C++). For now,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment