Dodanie 'jenkinsfile'

add jenkinsfile
This commit is contained in:
Julian Zabłoński 2022-03-21 11:05:14 +01:00
parent ec907266c8
commit 08e91c1a10

11
jenkinsfile Normal file
View File

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