plate-tool/Jenkinsfile

12 lines
152 B
Plaintext
Raw Normal View History

2023-12-31 03:32:17 +00:00
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}