From c7794ea25b65c2aa764a54a07303cbcf66afe702 Mon Sep 17 00:00:00 2001 From: Alfin Johny <alfin.johny@tum.de> Date: Fri, 20 Dec 2024 14:25:40 +0100 Subject: [PATCH] Add debug comments --- .gitlab-ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4b108c1..2304072 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,11 +26,17 @@ doxygen: tags: - documentation before_script: + # Install necessary packages, including git, doxygen, and other dependencies - apk update && apk --no-cache add git doxygen graphviz ttf-freefont texmf-dist texmf-dist-latexextra texlive texlive-dvi script: - # aircraft design + + # Debugging: Output the current working directory to help troubleshoot path issues + - echo "Current working directory: $(pwd)" + # Clone the aircraft-design repository, including its submodules - git clone --recurse-submodules https://gitlab-ci-token:${CI_JOB_TOKEN}@git.rwth-aachen.de/unicado/aircraft-design - - cd $CI_PROJECT_DIR + # Change to the project directory (useful for multi-directory repositories) + - cd $CI_PROJECT_DIR + artifacts: paths: - $CI_PROJECT_DIR/docs/documentation -- GitLab