add Jenkinsfile

This commit is contained in:
piotr6789 2021-03-28 20:05:59 +02:00
parent ed021ff87b
commit 28dc433281

10
Jenkinsfile vendored Normal file
View File

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