This commit is contained in:
PurpleCow 2022-12-08 22:52:50 +01:00
parent 0043e83481
commit 3802ffdc04

11
Jenkinsfile vendored Normal file
View File

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