psniquiz/Jenkinsfile

11 lines
151 B
Plaintext
Raw Normal View History

2024-09-26 18:37:24 +03:00
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}