add Jenkinsfile

This commit is contained in:
PawelDopierala 2024-03-20 14:29:43 +01:00
parent 5ebf5d7bba
commit 58978fb705

10
Jenkinsfile vendored Normal file
View File

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