Update Jenkinsfile

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

4
Jenkinsfile vendored
View file

@ -1,9 +1,9 @@
@Library('my-pipeline-library')_
MAIL_TRIGGER@Library('my-pipeline-library')_
myDeliveryPipeline(properties([
parameters([
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')
booleanParam(name: 'MAIL_TRIGGER', defaultValue: true, description: 'mail to be triggred')
])
]))