This commit is contained in:
s152483 2020-04-03 11:32:48 +02:00
parent 8896c87ce2
commit bfde9e1b7d

11
Jenkinsfile vendored Normal file
View File

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