Add Jenkinsfile

This commit is contained in:
marcin-szczepanski 2020-04-03 10:47:06 +02:00
commit 9f27bb2b2c

11
Jenkinsfile vendored Normal file
View File

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