add blank Jenkinsfile

This commit is contained in:
Andrew Dolgov 2022-10-01 18:09:36 +03:00
parent 42bc1620b8
commit 918d6c216d
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

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