hello world

This commit is contained in:
DarkPete 2019-04-26 10:44:13 +02:00
parent 900a0beb63
commit d799ecfde2

10
Jenkinsfile vendored
View File

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