Skip to content
Snippets Groups Projects
Commit 2af59667 authored by Alfin Johny's avatar Alfin Johny
Browse files

Modifying configuration file to generate documentation for engine library

parent 31234869
No related tags found
1 merge request!5Adapting files in unicado.gitlab.io to include Engine Library documentation
Pipeline #1527253 failed
......@@ -28,8 +28,17 @@ doxygen:
before_script:
- apk update && apk --no-cache add git doxygen graphviz ttf-freefont texmf-dist texmf-dist-latexextra texlive texlive-dvi
script:
- git clone -b feature-aircraftGeometry2 --recurse-submodules https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/libraries
- cd libraries/aircraftGeometry2/doc/ && ( cat Doxyfile ; echo "OUTPUT_DIRECTORY = $CI_PROJECT_DIR/docs/documentation/" ) | doxygen -
# Clone the UNICADO library repository once
- git clone --recurse-submodules https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/libraries
- cd libraries
# Generate documentation for the feature-aircraftGeometry2 branch
- git checkout feature-aircraftGeometry2
- git submodule update --init --recursive
- cd aircraftGeometry2/doc/ && ( cat Doxyfile ; echo "OUTPUT_DIRECTORY = $CI_PROJECT_DIR/docs/documentation/feature-aircraftGeometry2" ) | doxygen -
# Generate documentation for the feature-engine branch
- git checkout feature-engine
- git submodule update --init --recursive
- cd engine/doc/ && ( cat Doxyfile ; echo "OUTPUT_DIRECTORY = $CI_PROJECT_DIR/docs/documentation/feature-engine" ) | doxygen -
artifacts:
paths:
- $CI_PROJECT_DIR/docs/documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment