calculator/Jenkinsfile

12 lines
152 B
Plaintext
Raw Normal View History

2024-05-24 10:59:03 +00:00
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}