18 lines
475 B
Plaintext
18 lines
475 B
Plaintext
pipeline {
|
|
agent {dockerfile true}
|
|
stages {
|
|
stage('training') {
|
|
steps {
|
|
sh 'chmod +x pred_from_mlflow_model.py'
|
|
sh 'python3 pred_from_mlflow_model.py'
|
|
}
|
|
}
|
|
stage('sendMail') {
|
|
steps{
|
|
emailext body: currentBuild.result ?: 'MLFLOW PREDICT COOP SUCCESS',
|
|
subject: 's434804',
|
|
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
}
|
|
} |