ium_434749/train-model.Jenkinsfile

23 lines
731 B
Plaintext
Raw Normal View History

2021-04-25 20:55:45 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage('Build') {
steps {
git 'https://git.wmi.amu.edu.pl/s434749/ium_434749.git'
copyArtifacts fingerprintArtifacts: true, projectName: 's434749-create-dataset', selector: lastSuccessful()
2021-05-09 18:35:29 +02:00
sh 'python3 train_model.py'
2021-04-25 20:55:45 +02:00
}
post {
success {
2021-04-26 17:36:15 +02:00
emailext body: 'Training of CNN for english phonetic embeddings has finished successfully', subject: 's434749 training finished', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
2021-05-09 18:35:29 +02:00
archiveArtifacts 'cnn.pth,sacred_file_observer'
2021-04-25 20:55:45 +02:00
}
}
}
}
}