From 8331d723af12f3e9faee7703b331be54afab5319 Mon Sep 17 00:00:00 2001 From: Alexander Kaschta <alexander.kaschta9@kit.edu> Date: Tue, 22 Oct 2024 22:18:44 +0200 Subject: [PATCH] FIX: Pip dependencies --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0949241..ed84afc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,8 +11,8 @@ before_script: - python3 -V # Print out python version for debugging - pip3 install build - python3 -m venv || apt-get -y install python3-venv - - if [ $CI_JOB_STAGE != "deploy" ]; then if [ $CI_COMMIT_BRANCH == "main" ]; then pip3 install git+https://gitlab.kit.edu/scc-net/netvs/netvs_hub_cli.git@main#egg=netvs_hub_cli; else pip3 install git+https://gitlab.kit.edu/scc-net/netvs/netvs_hub_cli.git@devel#egg=netvs_hub_cli; fi; fi - pip3 install netdb-client --index-url https://gitlab.kit.edu/api/v4/groups/198806/-/packages/pypi/simple + - if [ $CI_JOB_STAGE != "deploy" ]; then if [ $CI_COMMIT_BRANCH == "main" ]; then pip3 install git+https://gitlab.kit.edu/scc-net/netvs/netvs_hub_cli.git@main#egg=netvs_hub_cli; else pip3 install git+https://gitlab.kit.edu/scc-net/netvs/netvs_hub_cli.git@devel#egg=netvs_hub_cli; fi; fi stages: - check -- GitLab