initial commit

This commit is contained in:
Tomasz Łysiak 2019-04-26 10:28:45 +02:00
commit 199d194cf0

10
Jenkinsfile vendored Normal file
View File

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