Files
dashboard/Jenkinsfile
falk f0cdafe8c9
Some checks failed
SimcoDash/simcompanies-dashboard/pipeline/head There was a failure building this commit
add jenkinsfile
2020-05-12 21:24:48 +02:00

11 lines
151 B
Groovy

pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}