ium_s434700/learning/Jenkinsfile
Filip Izydorczyk 3f0f274eb3 Added posts
2021-05-27 17:14:08 +02:00

45 lines
1.1 KiB
Groovy

pipeline {
agent {
dockerfile true
}
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's434700-create-dataset',
filter: '*.csv',
target: 'datasets'])
}
}
}
stage('checkout: Check out from version control') {
steps {
git 'https://git.wmi.amu.edu.pl/s434700/ium_s434700.git'
}
}
stage('learning') {
steps {
sh 'python ./learning/ml.py'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'model.pt'
}
}
}
post {
success {
build job: 's434700-evaluation/master'
mail body: 'SUCCESS TRAINING', subject: 's434700', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE TRAINING', subject: 's434700', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}