added jenkinsfile

This commit is contained in:
Lukasz Tatrocki 2020-04-03 11:18:06 +02:00
commit b1caefc54c

11
Jenkinsfile vendored Normal file
View File

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