File tree Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ 0/html/index.html
Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ orbs :
4+ python :
circleci/[email protected] 5+
6+ jobs :
7+ build_doc :
8+ executor : python/default
9+ steps :
10+ - checkout
11+ - python/load-cache
12+ - python/install-deps
13+ - python/save-cache
14+ - run : pip install sphinx sphinx-autobuild sphinx-rtd-theme
15+ - run :
16+ command : cd docs;make html
17+ name : doc_build
18+ - store_artifacts :
19+ path : docs/_build/html/
20+ destination : html
21+
22+ workflows :
23+ main :
24+ jobs :
25+ - build_doc
Original file line number Diff line number Diff line change @@ -43,10 +43,17 @@ jobs:
4343 find SLAM -name "*.py" | xargs mypy
4444 - name : do diff style check
4545 run : bash rundiffstylecheck.sh
46+ - name : run-circleci-artifacts-redirector
47+ 48+ with :
49+ repo-token : ${{ secrets.GITHUB_TOKEN }}
50+ artifact-path : 0/html/index.html
51+ circleci-jobs : build_doc
4652 - name : do all unit tests
4753 run : bash runtests.sh
4854 - name : Codecov
49555056
5157
5258
59+
You can’t perform that action at this time.
0 commit comments