jenkins file added

This commit is contained in:
Yevheniia Tsapkova 2020-04-03 11:33:45 +02:00
parent d89676d366
commit 8354ca662c
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

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