From 9fc700d1efdb5a38236a99ba193e3017da90cc08 Mon Sep 17 00:00:00 2001 From: Ali Amr Ali Taha Elnwegy Date: Fri, 1 Mar 2024 10:57:34 +0100 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a0721f..e3f2b9b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,14 +22,20 @@ stages: # List of stages for jobs, and their order of execution build-job: # This job runs in the build stage, which runs first. stage: build + image: python:3.11-alpine3.19 script: + - echo "Installing dependencies..." + - pip install setuptools + - pip install -r requirments.txt - echo "Compiling the code..." - python -m build - echo "Compile complete." documentation-job: stage: documentation + image: python:3.11-alpine3.19 script: + - pip install pydoctor - echo "Generating Documentation..." - python -m pydoctor - echo "Documentation Generated."