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

Fix error in mkdocs.yml

parent 8011e520
Branches
No related tags found
3 merge requests!55[WEBPAGE] Update style of current unicado page,!18Fix header issue in subpages.,!17Integrate mkdoxy in CI pipeline
Pipeline #1563673 passed
...@@ -65,10 +65,16 @@ pages: ...@@ -65,10 +65,16 @@ pages:
- pipenv run pip install mkdoxy # Install the mkdoxy plugin if needed - pipenv run pip install mkdoxy # Install the mkdoxy plugin if needed
- echo "MkDocs version:" - echo "MkDocs version:"
- pipenv run mkdocs --version - pipenv run mkdocs --version
- apt-get update
- apt-get install -y doxygen
- export DOXYGEN_BIN=/usr/bin/doxygen
- pipenv install --dev # Install all necessary dependencies
- echo "Listing files in the project directory:" - echo "Listing files in the project directory:"
- ls -la $CI_PROJECT_DIR - ls -la $CI_PROJECT_DIR
- echo "Listing files in docs directory:" - echo "Listing files in docs directory:"
- ls -la $CI_PROJECT_DIR/docs - ls -la $CI_PROJECT_DIR/docs
- which doxygen # Verifies that Doxygen is available in the path
script: script:
# Create the folder where the generated markdown files will be stored # Create the folder where the generated markdown files will be stored
- mkdir $CI_PROJECT_DIR/docs/aircraft-xml - mkdir $CI_PROJECT_DIR/docs/aircraft-xml
......
...@@ -66,7 +66,8 @@ plugins: ...@@ -66,7 +66,8 @@ plugins:
- mkdoxy: - mkdoxy:
projects: projects:
aircraft_design: aircraft_design:
src-dirs: docs/documentattion/aircraft_design/ doxygen_bin: "/path/to/doxygen" # Update with the correct path
src-dirs: docs/documentation/aircraft_design/
full-doc: True full-doc: True
doxy-cfg: doxy-cfg:
FILE_PATTERNS: "*.cpp *.h *.md *.png *.svg" # Include .cpp, .h, .md, .png, .svg files in the documentation FILE_PATTERNS: "*.cpp *.h *.md *.png *.svg" # Include .cpp, .h, .md, .png, .svg files in the documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment