eventdb/Jenkinsfile

11 lines
112 B
Text
Raw Normal View History

2018-01-28 16:38:12 +01:00
pipeline {
agent none
stages {
stage('') {
steps {
sh '''echo Test
'''
}
}
}
}