orchidmap-front/Jenkinsfile
2020-03-20 17:37:43 +07:00

11 lines
No EOL
151 B
Groovy

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