add jenkinsfile

This commit is contained in:
Dawid Jurkiewicz 2020-04-03 11:01:31 +02:00
parent b4e8b80a48
commit c65b15f118

10
Jenkinsfile vendored Normal file
View File

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