ium_434804/Jenkisfile_train

39 lines
1.1 KiB
Plaintext
Raw Normal View History

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: 's434804-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('training') {
steps {
2021-05-23 15:03:51 +02:00
//sh 'chmod +x tensor.py'
//sh 'python3 tensor.py'
sh 'rm -rf country_vaccination'
2021-05-23 14:20:16 +02:00
sh 'chmod +x mlflow_model.py'
sh 'python3 mlflow_model.py'
}
}
stage('archiveArtifacts') {
steps{
archiveArtifacts 'vaccines_model/saved_model.pb'
2021-05-23 14:31:25 +02:00
archiveArtifacts 'country_vaccination/**'
}
}
stage('sendMail') {
steps{
emailext body: currentBuild.result ?: 'TRAINING SUCCESS',
subject: 's434804',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}