added jenkins file

This commit is contained in:
Fedor Katurov 2020-03-20 17:37:43 +07:00
parent 75f76e473b
commit 12fa07f243

11
Jenkinsfile vendored Normal file
View file

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