jean-cloud_website/Jenkinsfile
Adrian Amaglio da1f515635 jenkins
2019-08-20 18:25:58 +02:00

12 lines
152 B
Groovy

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