This commit is contained in:
Charles Showalter 2022-05-28 19:23:46 -04:00
parent 9763ef9c25
commit efeef5e41a

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}