Compare commits

..

No commits in common. "76d84307667962faa6f06dcc4055ab9ea897a931" and "e8255501d91ca74b3838f331c4226a918b4c2575" have entirely different histories.

View File

@ -1,10 +1,5 @@
pipeline { pipeline {
agent { agent any
docker {
image 'my-python-mlflow'
args '-v /root/.cache:/root/.cache -u root'
}
}
environment { environment {
PATH = "/path/to/your/python/bin:${env.PATH}" PATH = "/path/to/your/python/bin:${env.PATH}"
SACRED_IGNORE_GIT = 'TRUE' SACRED_IGNORE_GIT = 'TRUE'
@ -13,9 +8,9 @@ pipeline {
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok') string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
} }
stages { stages {
stage('Przygotuj') { stage('Przygotowanie') {
steps { steps {
sh 'python -m pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow' sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
} }
} }
stage('Pobierz dane') { stage('Pobierz dane') {