This commit is contained in:
Dawid Kubicki 2019-04-26 10:45:44 +02:00
commit 4620a9361a

10
Jenkinsfile vendored Normal file
View File

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