Added Jenkinsfile

This commit is contained in:
Maciej Sobkowiak 2021-03-28 22:19:38 +02:00
parent 15be9be550
commit 9e9e1fa2d6

10
Jenkinsfile vendored Normal file
View File

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