Skip to content

Commit a05c944

Browse files
author
Carl Delsey
authoredOct 1, 2019
Sphinx Docs - Template Only (ros-navigation#1138)
* Add non doc directory files * Add template.
1 parent a0a9eb2 commit a05c944

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2107
-0
lines changed
 

‎.circleci/config.yml

+46
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,23 @@ references:
268268
file: lcov/project_coverage.info
269269
flags: project
270270
when: always
271+
setup_doc_dependencies: &setup_doc_dependencies
272+
run:
273+
name: Install Doc Dependencies
274+
command: |
275+
apk --no-cache add python3
276+
python3 -m ensurepip
277+
pip3 install sphinx==1.7.5 docutils==0.14 sphinx_rtd_theme breathe==4.9.1 sphinxcontrib-plantuml
278+
apk --no-cache add make
279+
apk --no-cache add doxygen
280+
apk --no-cache add graphviz
281+
apk --no-cache add ttf-dejavu
282+
apk --no-cache add openjdk8-jre
283+
make_docs: &make_docs
284+
run:
285+
command: |
286+
cd src/navigation2/sphinx_doc
287+
make html
271288
272289
commands:
273290
<<: *common_commands
@@ -310,6 +327,14 @@ commands:
310327
steps:
311328
- *collect_overlay_coverage
312329
- *upload_overlay_coverage
330+
install_doc_dependencies:
331+
description: "Install documentation dependencies"
332+
steps:
333+
- *setup_doc_dependencies
334+
build_docs:
335+
description: "Build docs"
336+
steps:
337+
- *make_docs
313338

314339
executors:
315340
debug_exec:
@@ -330,6 +355,10 @@ executors:
330355
CACHE_NONCE: "Release"
331356
OVERLAY_MIXINS: "release ccache"
332357
UNDERLAY_MIXINS: "release ccache"
358+
docs_exec:
359+
docker:
360+
- image: alpine:latest
361+
working_directory: /opt/overlay_ws
333362

334363
jobs:
335364
debug_build: &debug_build
@@ -370,6 +399,16 @@ jobs:
370399
<<: *release_test
371400
environment:
372401
RMW_IMPLEMENTATION: "rmw_opensplice_cpp"
402+
docs_build:
403+
executor: docs_exec
404+
steps:
405+
- install_doc_dependencies
406+
- *on_checkout
407+
- build_docs
408+
docs_publish:
409+
executor: docs_exec
410+
steps:
411+
- run: echo 'TODO - This is where we would publish the docs.'
373412

374413
workflows:
375414
version: 2
@@ -383,6 +422,13 @@ workflows:
383422
- release_test:
384423
requires:
385424
- release_build
425+
- docs_build
426+
- docs_publish:
427+
requires:
428+
- docs_build
429+
filters:
430+
branches:
431+
only: master
386432
nightly:
387433
jobs:
388434
- debug_build

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ install
4444
# Python artifacts
4545
__pycache__/
4646
*.py[cod]
47+
48+
sphinx_doc/_build

0 commit comments

Comments
 (0)