Merge pull request 'add jenkinsfile' (#54) from falk-patch-1 into master
All checks were successful
SimcoDash/simcompanies-dashboard/pipeline/head This commit looks good

Reviewed-by: falksjenkins <jenkins1@boehlk.io>
This commit was merged in pull request #54.
This commit is contained in:
2020-05-12 21:28:27 +02:00

11
Jenkinsfile vendored Normal file
View File

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