ssss
Some checks failed
s434766-training/pipeline/head There was a failure building this commit

This commit is contained in:
s434766 2021-05-10 10:36:02 +02:00
parent 23628e38eb
commit 707fa46258

View File

@ -19,6 +19,7 @@ pipeline {
name: 'EPOCHS'
)
}
stages {
stage('checkout') {
steps {
@ -32,17 +33,19 @@ pipeline {
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'pred.txt'
steps{
archiveArtifacts 'pred.txt'
archiveArtifacts 'stroke.pkl'
}
post {
success {
emailext body: 'Training of stroke predictions is finished',
subject: 's434766 training finished',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
stage('sendMail') {
steps{
emailext body: currentBuild.result ?: 'SUCCESS',
subject: 's434766 training',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}
}
}