Skip to content
Snippets Groups Projects

Release 4.0.0-alpha

Merged Cresson Remi requested to merge 39-readthedocs into develop
1 file
+ 27
0
Compare changes
  • Side-by-side
  • Inline
+ 27
0
@@ -28,6 +28,7 @@ workflow:
stages:
- Build
- Static Analysis
- Documentation
- Test
- Applications Test
- Update dev image
@@ -119,6 +120,32 @@ cppcheck:
- sudo apt update && sudo apt install cppcheck -y
- cd $OTBTF_SRC/ && cppcheck --enable=all --error-exitcode=1 -I include/ --suppress=missingInclude --suppress=unusedFunction .
.doc_base:
stage: Documentation
before_script:
- pip install -r doc/doc_requirements.txt
artifacts:
paths:
- public
- public_test
pages_test:
extends: .doc_base
except:
- master
script:
- mkdocs build --site-dir public_test
pages:
extends: .doc_base
only:
- master
script:
- mkdocs build --site-dir public
artifacts:
paths:
- public
.tests_base:
artifacts:
paths:
Loading