daily
SLW\ARNAUA 2023-06-15 16:39:07 +02:00
parent 5369e65409
commit e9604ddd1b
1 changed files with 10 additions and 6 deletions

16
Jenkinsfile vendored
View File

@ -84,15 +84,19 @@ pipeline {
script {
installRetryCount = installRetryCount+1
}
sh """
sudo add-apt-repository ppa:deadsnakes/ppa -y && \
sudo apt update && \
sudo apt install python3.8 -y && \
pip3 --version
python --version
pip3 install -r requirements.txt
pip3 install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git
"""
// sh """
// sudo add-apt-repository ppa:deadsnakes/ppa -y && \
// sudo apt update && \
// sudo apt install python3.8 -y && \
// pip3 --version
// python --version
// pip3 install -r requirements.txt
// pip3 install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git
// """
}
}
}