Added Jenkinsfile

This commit is contained in:
Kamil Guttmann 2022-03-21 11:01:23 +01:00
parent 0c6a6a5406
commit 22a0d94899

10
Jenkinsfile vendored Normal file
View File

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