add jenkinsfile

This commit is contained in:
andrzej 2024-05-24 12:21:29 +02:00
parent 9a5f776d41
commit 5250869a67
1 changed files with 11 additions and 0 deletions

11
src/Jenkinsfile vendored Normal file
View File

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