Skip to content
Snippets Groups Projects
Commit a773b71c authored by Sebastian Oberschwendtner's avatar Sebastian Oberschwendtner
Browse files

Update .gitlab-ci.yml file

parent d4fda150
No related branches found
No related tags found
3 merge requests!76Draft: Updated Python code example,!73Initial open source version,!1Doxygen setup for contionuous documentation
Pipeline #1109468 failed
...@@ -16,6 +16,9 @@ ...@@ -16,6 +16,9 @@
# === Configure pipeline === # === Configure pipeline ===
image: python:latest image: python:latest
stages:
- build
- deploy
doxygen: doxygen:
stage: build stage: build
...@@ -25,7 +28,10 @@ doxygen: ...@@ -25,7 +28,10 @@ doxygen:
- apt-get update && apt-get install -y doxygen - apt-get update && apt-get install -y doxygen
script: script:
- git clone -b feature-aircraftGeometry2 https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/libraries - git clone -b feature-aircraftGeometry2 https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/libraries
- cd libraries/aircraftGeometry2/doc/ && doxygen Doxyfile - cd libraries/aircraftGeometry2/doc/ && ( cat Doxyfile ; echo "OUTPUT_DIRECTORY = $(CI_PROJECT_DIR)/docs/modules/" ) | doxygen -
artifacts:
paths:
- $(CI_PROJECT_DIR)/docs/modules
rules: rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
when: on_success when: on_success
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment