add Jenkins file

This commit is contained in:
Olga 2020-04-03 11:29:20 +02:00
commit 435f0f4ff4

11
Jenkins Normal file
View File

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