add jenkinsfile #54

Merged
falk merged 1 commits from falk-patch-1 into master 2020-05-12 19:28:46 +00:00

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}