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