Add Jenkinsfile

This commit is contained in:
Dawid 2021-03-28 19:38:34 +02:00
parent 755e14420f
commit 4211e73763

10
Jenkinsfile vendored Normal file
View File

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