Jenkinsfile

This commit is contained in:
laskau 2019-04-26 10:36:29 +02:00
commit 01a0a6c7cf

10
Jenkinsfile vendored Normal file
View File

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