orchidmap-front/Jenkinsfile
2020-03-20 19:47:08 +07:00

11 lines
No EOL
153 B
Groovy

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