test Jenkins file

This commit is contained in:
medcl 2020-03-03 10:47:25 +08:00
parent 1ea6cb1fb5
commit c39f779e35
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'
}
}
}
}