initial commit

This commit is contained in:
tracer 2022-10-07 19:16:26 +02:00
parent 059e3934f9
commit 4199faecb4
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

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