From eac91e8061f3ae7ec5df5d39f70f19c44bfa0e15 Mon Sep 17 00:00:00 2001 From: QXZ3NHY Date: Fri, 16 Jun 2023 09:40:14 +0200 Subject: [PATCH] kpi-extension functionality --- Jenkinsfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index dadef81..512550c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -100,11 +100,12 @@ pipeline { sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1 && \ sudo update-alternatives --config python && \ python --version - python -m pip3 install pip + python -m pip install pip ls -la /usr/lib/ | grep python - pip3 --version - pip3 install -r requirements.txt - pip3 install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git + curl https://bootstrap.pypa.io/get-pip.py | python3.8 + python3.8 -m pip --version + python3.8 -m pip install -r requirements.txt + python3.8 -m pip install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git """ } }