Update Jenkinsfile

This commit is contained in:
Shweta217 2019-01-21 00:06:49 +05:30 committed by GitHub
parent 2a61323675
commit 65048ed8e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -1,3 +1,4 @@
library 'my-pipeline-library' _
properties ([ properties ([
parameters([ parameters([
string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build'), string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build'),
@ -8,6 +9,9 @@ properties ([
]) ])
]) ])
@Library('my-pipeline-library') _
myDeliveryPipeline(BRANCH:params.BRANCH, RUN_TEST:params.RUN_TEST, MAIL_TRIGGER:params.MAIL_TRIGGER, EMAIL:params.EMAIL)
myDeliveryPipeline(BRANCH:params.BRANCH
RUN_TEST:params.RUN_TEST
MAIL_TRIGGER:params.MAIL_TRIGGER
EMAIL:params.EMAIL)