jean-cloud_website/Jenkinsfile
Adrian Amaglio da1f515635
All checks were successful
Gitea/jean-cloud_website/master This commit looks good
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'
}
}
}
}