added Jenkinsfile

This commit is contained in:
patrycjalazna 2021-03-23 20:31:17 +01:00
parent 2c992734bf
commit 7214fee11c

12
Jenkinsfile vendored Normal file
View File

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