This commit is contained in:
Anna Nowak 2021-04-28 21:24:24 +02:00
parent 9c135c7665
commit 00e1272c10

View File

@ -7,14 +7,14 @@ pipeline {
defaultSelector: lastSuccessful(), defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts', description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD' name: 'WHICH_BUILD'
), )
string( string(
defaultValue: '16' defaultValue: '16',
description: 'batch size', description: 'batch size',
name: 'BATCH_SIZE' name: 'BATCH_SIZE'
), )
string( string(
defaultValue: '15' defaultValue: '15',
description: 'epochs', description: 'epochs',
name: 'EPOCHS' name: 'EPOCHS'
) )
@ -40,9 +40,11 @@ pipeline {
} }
} }
stage('send email') { stage('send email') {
emailext body: 'build status: ${currentBuild.result}', steps {
subject: 's434760 - train', emailext body: 'build status: ${currentBuild.result}',
to: 'annnow19@st.amu.edu.pl' subject: 's434760 - train',
to: 'annnow19@st.amu.edu.pl'
}
} }
} }
} }