This commit is contained in:
Zuzanna Ric 2019-04-26 12:29:36 +02:00
parent e0a67469fa
commit 8d16e98d26

10
Jenkinsfile vendored Normal file
View File

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