Lines Matching full:doc
26 doc-file-check:
27 name: Check for doc changes
32 file_check: ${{ steps.check-doc-files.outputs.any_modified }}
41 id: check-doc-files
44 doc/
45 boards/**/doc/
55 doc/requirements.txt
56 .github/workflows/doc-build.yml
60 doc-build-html:
62 needs: [doc-file-check]
65 ( needs.doc-file-check.outputs.file_check == 'true' || github.event_name != 'pull_request' )
69 group: doc-build-html-${{ github.ref }}
107 key: pip-${{ hashFiles('doc/requirements.txt') }}
111 pip install -r doc/requirements.txt
138 make -C doc ${DOC_TARGET}
141 …python3 -m coverxygen --xml-dir doc/_build/html/doxygen/xml/ --src-dir include/ --output doc-cove…
143 lcov --remove doc-coverage.info \*/deprecated > new.info
148 tar --use-compress-program="xz -T0" -cf html-output.tar.xz --directory=doc/_build html
149 … tar --use-compress-program="xz -T0" -cf api-output.tar.xz --directory=doc/_build html/doxygen/html
185 doc-build-pdf:
187 needs: [doc-file-check]
195 group: doc-build-pdf-${{ github.ref }}
215 key: pip-${{ hashFiles('doc/requirements.txt') }}
225 pip install -r doc/requirements.txt
246 make -C doc pdf
255 doc/_build/latex/zephyr.pdf
256 doc/_build/latex/zephyr.log
258 doc-build-status-check:
262 - doc-build-pdf
263 - doc-file-check
264 - doc-build-html