This commit is contained in:
Jakub Zaręba 2023-05-10 23:54:43 +02:00
parent 04fe4bb719
commit 254b155fb6

View File

@ -1,10 +1,5 @@
pipeline { pipeline {
agent { agent any
docker {
image 'python:3.11'
args '-v /root/.cache:/root/.cache -u root'
}
}
environment { environment {
SACRED_IGNORE_GIT = 'TRUE' SACRED_IGNORE_GIT = 'TRUE'
} }
@ -12,7 +7,7 @@ pipeline {
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok') string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
} }
stages { stages {
stage('Preparation') { stage('Przygotowanie') {
steps { steps {
sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow' sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
} }