add jenkinsfile

This commit is contained in:
dylodylo 2020-04-03 11:21:41 +02:00
parent ce63550007
commit 96ca0200bd

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}