This commit is contained in:
vagrant 2020-04-18 15:08:53 +00:00
commit 9b6ce6866e

11
Jenkinsfile vendored Normal file
View File

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