added jenkinsfile

This commit is contained in:
Jakub Pogodziński 2021-03-24 12:59:23 +01:00
parent bbcdb457fc
commit ab72076ee2

10
Jenkinsfile vendored Normal file
View File

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