Add Jenkinsfile

This commit is contained in:
Zofia Galla 2021-03-22 12:48:56 +01:00
parent d47b7e7e80
commit 451b8d08be

11
jenkinsfile.txt Normal file
View File

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