eventdb/Jenkinsfile
2018-01-28 16:38:12 +01:00

11 lines
No EOL
112 B
Groovy

pipeline {
agent none
stages {
stage('') {
steps {
sh '''echo Test
'''
}
}
}
}