Added Jenkinsfile

This commit is contained in:
Ralph J.Mayer 2018-01-28 16:38:12 +01:00
parent 80dcedc5dc
commit 3c1b2e1401

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent none
stages {
stage('') {
steps {
sh '''echo Test
'''
}
}
}
}