From e5571c3ea265f8d2cd5c8f9e4a9118ee1a85599e Mon Sep 17 00:00:00 2001 From: QXZ3NHY Date: Fri, 16 Jun 2023 07:34:26 +0200 Subject: [PATCH] kpi-extension functionality --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ae3ebd9..f1c43a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -93,7 +93,7 @@ pipeline { sudo add-apt-repository ppa:deadsnakes/ppa -y && \ sudo apt install python3.8 -y pip3 --version - python3 --version + python3.8 --version pip3 install -r requirements.txt pip3 install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git """ @@ -148,7 +148,7 @@ pipeline { if (KPI_EXTENSION=='true') { echo "Executing KPI Extension" - sh "python3 kpi_extension.py" + sh "python3.8 kpi_extension.py" } }