From 974c913587072b536d76e243e60ae684e1da8926 Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Thu, 15 Jun 2023 12:11:23 +0200 Subject: [PATCH] error 128 degbugging --- Jenkinsfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e684648..09f6fd0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,9 +53,9 @@ pipeline { environment { //ProxySettings - AUTH = credentials('proxy') - proxy_user = "${AUTH_USR}" - proxy_pw = "${AUTH_PSW}" + AUTH = credentials('jaws_dynatrace_bitbuket_user') + user = "${AUTH_USR}" + pw = "${AUTH_PSW}" //http_proxy="http://${proxy_user}:${proxy_pw}@proxy.muc:8080" //https_proxy="http://${proxy_user}:${proxy_pw}@proxy.muc:8080" //no_proxy="localhost,127.0.0.1,.muc,.bmwgroup.net" @@ -109,9 +109,10 @@ pipeline { script { installRetryCount = installRetryCount+1 } - sh ''' - pip3 install --user -r requirements.txt - ''' + sh """ + pip3 install -r requirements.txt + pip3 install -r git+https://${user}:${pw}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git + """ } } }