Zmiana maila, poprawki

This commit is contained in:
Anna Nowak 2021-04-28 23:01:13 +02:00
parent 97565adb7b
commit 522f357fd4

View File

@ -32,7 +32,6 @@ pipeline {
steps steps
{ {
catchError { catchError {
sh 'ls'
sh 'python3.8 train.py ${BATCH_SIZE} ${EPOCHS}' sh 'python3.8 train.py ${BATCH_SIZE} ${EPOCHS}'
} }
} }
@ -44,9 +43,9 @@ pipeline {
} }
stage('send email') { stage('send email') {
steps { steps {
emailext body: currentBuild.result, emailext body: currentBuild.result ?: 'SUCCESS',
subject: 's434760 - train', subject: 's434760 - train',
to: 'annnow19@st.amu.edu.pl' to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
} }
} }
} }