This commit is contained in:
Jakub Zaręba 2023-05-11 00:06:52 +02:00
parent d8c24f4511
commit 162dcf95ab

View File

@ -6,16 +6,15 @@ pipeline {
} }
} }
environment { environment {
PATH = "/path/to/your/python/bin:${env.PATH}"
SACRED_IGNORE_GIT = 'TRUE' SACRED_IGNORE_GIT = 'TRUE'
} }
parameters { parameters {
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok') string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
} }
stages { stages {
stage('Przygotuj') { stage('Przygotowania') {
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') {