Skip to content
Snippets Groups Projects

docs

Merged Imported Administrator requested to merge docs into master
Compare and
16 files
+ 397
27
Compare changes
  • Side-by-side
  • Inline
Files
16
.ci/docs.sh 0 → 100755
+ 36
0
#!/bin/sh -e
# Description: create documentation with sphinx
# Artifacts: public/
# https://postmarketos.org/pmb-ci
# Install sphinx + extensions when running in CI
if [ "$(id -u)" = 0 ]; then
set -x
apk -q add \
py3-myst-parser \
py3-sphinx_rtd_theme \
py3-sphinxcontrib-autoprogram
exec su "${TESTUSER:-build}" -c "sh -e $0"
fi
# Validate that all modules are documented.
fail=0
modules="$(find mrhlpr/ mrtest/ -name "*.py" | grep -v '/__init__.py' | grep -v '/data/' | sort | sed 's|\.py$||' | sed 's|/|.|g')"
for module in $modules; do
if ! grep -q "automodule:: $module" docs/mrhlpr/mrhlpr.rst docs/mrtest/mrtest.rst; then
echo "Undocumented module: $module"
fail=1
fi
done
if [ "$fail" -eq 1 ]; then
echo "ERROR: Found undocumented modules!"
echo "ERROR: Please add this module to the correct .rst file in docs/"
exit 1
fi
sphinx-build \
docs \
public \
# -E -a -v -T
Loading