Add Jenkinsfile

This commit is contained in:
Agata 2022-03-21 10:59:30 +01:00
parent 66cc8301ee
commit 88f40862d1

10
Jenkinsfile vendored Normal file
View File

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