zad5 test1

This commit is contained in:
massta 2020-04-05 20:44:42 +02:00
parent daa8e4b2dc
commit 5301772ee7

11
jenkinsfile3 Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Sending email') {
steps {
mail bcc: '', body: $Message, cc: '', from: '', replyTo: '', subject: 'Wykonanie zadań z warsztatów uczenia maszynowego C - Bartłomiej Wierzbiński - s452108', to: 'barwie2@st.amu.edu.pl'
}
}
}
}