add jenkinsfile

This commit is contained in:
Dawid Jurkiewicz 2020-04-03 15:21:52 +02:00
commit d7706938c2

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('mail') {
steps {
emailext body: '${message}', subject: 'Test', to: 'jurkiewiczdawid@gmail.com'
}
}
}
}