add jenkinsfile

This commit is contained in:
Yevhenii Poliakov 2023-03-22 14:06:59 +01:00
parent 1ad1cb2187
commit bcb4f48682

11
Jenkinsfile vendored Normal file
View File

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