jenkinsfile

This commit is contained in:
andrzej 2024-05-24 12:51:08 +02:00
parent ca271760eb
commit ea50ae89fb
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'
}
}
}
}