Update Jenkinsfile

This commit is contained in:
Sanjeev435 2018-12-16 14:17:10 +05:30 committed by GitHub
parent 561b4bebda
commit 6d9dc7df8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -2,7 +2,8 @@
myDeliveryPipeline(properties([
parameters([
string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build')
choice(name: 'RUN_TEST', choices: ['yes', 'no'], description: 'Run test while build')
string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build'),
choice(name: 'RUN_TEST', choices: ['yes', 'no'], description: 'Run test while build'),
booleanParam(defaultValue: true, description: 'MAIL_TRIGGER', name: 'mail to be triggred')
])
]))