X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dce51a171761c0f221ee10beecf3f9ead9bbb627..1aab041889e9a68f49b95561ddb756cb1710157b:/docs/Build.sh diff --git a/docs/Build.sh b/docs/Build.sh index 3a28d289f8..cc536cb689 100755 --- a/docs/Build.sh +++ b/docs/Build.sh @@ -1,24 +1,37 @@ -#! /bin/sh +#! /bin/bash # # Simplistic script to rebuild our documentation with sphinx-build +# If you are missing some dependencies, try: pip3 install --requirement docs/requirements.txt + # Python needs to find simgrid on my machine, but not ctest -- sorry for the hack if [ -e /opt/simgrid ] ; then chmod +x /opt/simgrid; fi -set -e +set -ex +set -o pipefail if [ "x$1" != 'xdoxy' ] && [ -e build/xml ] ; then echo "Doxygen not rerun: 'doxy' was not provided as an argument" else rm -rf build/xml source/api/ - cd source; doxygen; cd .. + (cd source; doxygen 2>&1; cd ..) | grep -v "is not documented." #  XXXXX Reduce the verbosity for now fi if [ "x$1" != 'xjava' ] && [ -e source/java ] ; then echo "javasphinx not rerun: 'java' was not provided as an argument" else rm -rf source/java - javasphinx-apidoc --force -o source/java/ ../src/bindings/java/org/simgrid/msg + + # Use that script without installing javasphinx: javasphinx-apidoc --force -o source/java/ ../src/bindings/java/org/simgrid/msg + PYTHONPATH=${PYTHONPATH}:source/_ext/javasphinx python3 - --force -o source/java/ ../src/bindings/java/org/simgrid/msg <&1 set +x @@ -42,6 +55,7 @@ echo echo "Undocumented examples:" for ex in $( (cd .. ; \ find examples/s4u/ -name '*.cpp'; \ + find examples/c/ -name '*.c'; \ find examples/python -name '*.py'; \ ) | sort ) do