From a773b71cb749eb0718c86e7e424aa3a4e434014b Mon Sep 17 00:00:00 2001 From: Sebastian Oberschwendtner <sebastian.oberschwendtner@tum.de> Date: Wed, 25 Oct 2023 19:04:09 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 32baf34..59506e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,6 +16,9 @@ # === Configure pipeline === image: python:latest +stages: + - build + - deploy doxygen: stage: build @@ -25,7 +28,10 @@ doxygen: - apt-get update && apt-get install -y doxygen script: - 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: - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' when: on_success -- GitLab