fix overwriting model
Some checks reported errors
s434804-training/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Dawid 2021-05-23 14:58:10 +02:00
parent 929ef21183
commit 575dca6139

31
Jenkinsfile_mlflow Normal file
View File

@ -0,0 +1,31 @@
pipeline {
agent {dockerfile true}
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('copyArtifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434705-training/master', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('training') {
steps {
sh 'rm -rf country_vaccination'
sh 'chmod +x mlflow_model.py'
sh 'python3 mlflow_model.py'
}
}
stage('sendMail') {
steps{
emailext body: currentBuild.result ?: 'MLFLOW PREDICT SUCCESS',
subject: 's434804',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}