add Jenkinsfile

This commit is contained in:
s452111 2020-04-03 14:50:49 +02:00
commit a927c01412

10
Jenkinsfile vendored Normal file
View File

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