From 0469952733baf72a5615cb69aa02a46522783951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Fri, 9 Aug 2024 17:49:32 +0200 Subject: [PATCH] add docs --- .gitlab-ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8f7de90..8f3abdd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,29 @@ stages: - build - deploy + + +pages_pdf: + needs: [] + only: + - develop + before_script: + - pip3 install --break-system-packages --upgrade Cython setuptools pip + - pip3 install --break-system-packages -r requirements.txt + - python3 setup.py build_ext --inplace + when: manual + stage: build + image: zoo.smok.co/build/build:pages + script: + - cd docs + - make latexpdf + - cd .. + - mv docs/_build/latex/*.pdf . + artifacts: + paths: + - "*.pdf" + + pages: stage: build image: zoo.smok.co/build/build:pages -- GitLab