added Jenkins file

This commit is contained in:
Szymon Bartanowicz 2024-03-26 17:53:46 +01:00
parent f3ca0153eb
commit e9e4d317c4

10
Jenkinsfile vendored Normal file
View File

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