This commit is contained in:
Jakub Zaręba 2023-05-10 17:04:28 +02:00
parent eb05fab804
commit f7d99afe2f

View File

@ -24,7 +24,8 @@ pipeline {
stage('Trenuj model') {
steps {
script {
sh 'python3 train.py --epochs ${params.EPOCHS}'
// sh "python3 train.py --epochs $EPOCHS"
sh "python3 train.py"
}
}
}
@ -34,4 +35,4 @@ pipeline {
}
}
}
}
}