bindAPI/Jenkinsfile

12 lines
152 B
Plaintext
Raw Normal View History

2022-10-07 19:16:26 +02:00
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}