This commit is contained in:
Jakub Zaręba 2023-05-24 18:48:02 +02:00
parent c200b12c16
commit b0f5cec95c
1 changed files with 3 additions and 3 deletions

View File

@ -35,12 +35,12 @@ pipeline {
'''
}
}
stage('Update OpenSSL and Cryptography') {
steps {
sh '''
sudo apt-get update
sudo apt-get install openssl
apt-get update
apt-get install openssl
python3 -m pip uninstall -y cryptography
python3 -m pip install cryptography
'''