This commit is contained in:
Jakub Zaręba 2023-05-24 18:46:23 +02:00
parent 167aecacf1
commit c200b12c16
1 changed files with 11 additions and 0 deletions

View File

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