This commit is contained in:
s152483 2020-04-03 14:52:03 +02:00
parent ce329b9938
commit f82a53eeb9

9
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,9 @@
pipeline {
stages {
stage('mail') {
steps {
emailext body: 'Test', subject: 'Test', to: 'lookszym@gmail.com'
}
}
}
}