arch artifacts & mailing

This commit is contained in:
jakubknczny 2021-05-16 16:22:02 +02:00
parent c11b16dd1e
commit e70f6a1833
2 changed files with 26 additions and 0 deletions

12
lab5/eval/Jenkinsfile vendored
View File

@ -60,4 +60,16 @@ pipeline {
}
}
}
post {
success {
mail body: 'SUCCESS',
subject: 's434684-evaluation',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE',
subject: 's434684-evaluation',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}

View File

@ -45,9 +45,23 @@ pipeline {
stage('archive artifact') {
steps {
archiveArtifacts 'grid-stability-dense.h5'
archiveArtifacts 'my_runs/**'
}
}
}
}
}
post {
success {
build job: 's434684-evaluation/master'
mail body: 'SUCCESS',
subject: 's434684-training',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE',
subject: 's434684-training',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}