Update Jenkinsfile

This commit is contained in:
Shweta217 2019-01-21 00:43:17 +05:30 committed by GitHub
parent 913a090051
commit f86f0ad8b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
Jenkinsfile vendored
View file

@ -1,4 +1,5 @@
library 'my-pipeline-library' _
@Library('my-pipeline-library') _
properties ([
parameters([
string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build'),
@ -11,8 +12,9 @@ properties ([
//myDeliveryPipeline(
// BRANCH='uiui'
// RUN_TEST='jk'
// MAIL_TRIGGER='kkjkjk'
// EMAIL='yuiuk')
myDeliveryPipeline {
branch = params.BRANCH
runTest = params.RUN_TEST
triggerMail = params.MAIL_TRIGGER
email = params.EMAIL
}