add jenkinsfile
Some checks failed
SimcoDash/simcompanies-dashboard/pipeline/head There was a failure building this commit

This commit is contained in:
2020-05-12 21:24:48 +02:00
parent 99dfaa8b8e
commit f0cdafe8c9

11
Jenkinsfile vendored Normal file
View File

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