How to support Multiple branch release using Jenkis Pipeline SCM Script?2019 Community Moderator ElectionHow to clone all remote branches in Git?Git for beginners: The definitive practical guideGit workflow and rebase vs merge questionsHow do you create a remote Git branch?How do I check out a remote Git branch?How to clone a specific Git branch?How do I delete a Git branch both locally and remotely?How do I push a new local branch to a remote Git repository and track it too?How to get the current branch name in Git?How do I rename a local Git branch?
Ban on all campaign finance?
What options are left, if Britain cannot decide?
Theorems like the Lovász Local Lemma?
Rejected in 4th interview round citing insufficient years of experience
Does splitting a potentially monolithic application into several smaller ones help prevent bugs?
Why do Australian milk farmers need to protest supermarkets' milk price?
PTIJ: Who should pay for Uber rides: the child or the parent?
Employee lack of ownership
Informing my boss about remarks from a nasty colleague
Identifying the interval from A♭ to D♯
Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?
How to simplify this time periods definition interface?
Happy pi day, everyone!
How to generate globally unique ids for different tables of the same database?
Why using two cd commands in bash script does not execute the second command
It's a yearly task, alright
Where is the 1/8 CR apprentice in Volo's Guide to Monsters?
How could a scammer know the apps on my phone / iTunes account?
How could a female member of a species produce eggs unto death?
Russian cases: A few examples, I'm really confused
Replacing Windows 7 security updates with anti-virus?
Sword in the Stone story where the sword was held in place by electromagnets
Why did it take so long to abandon sail after steamships were demonstrated?
Good allowance savings plan?
How to support Multiple branch release using Jenkis Pipeline SCM Script?
2019 Community Moderator ElectionHow to clone all remote branches in Git?Git for beginners: The definitive practical guideGit workflow and rebase vs merge questionsHow do you create a remote Git branch?How do I check out a remote Git branch?How to clone a specific Git branch?How do I delete a Git branch both locally and remotely?How do I push a new local branch to a remote Git repository and track it too?How to get the current branch name in Git?How do I rename a local Git branch?
I have SCM
plugin setup to build Jenkins pipeline.
For Branches to build
option I have added the following 2 options-refs/heads/master
and refs/heads/release
I am triggering Jenkins using git hooks on the push of both of these branches.
Problem- on every push Jenkins build is happening through master
branch so scm.branches[0].name
this variable is always giving me master
as value regardless of the branch I have pushed.
How I can get different branches in scm
so that I can use respective build processes for them.
git jenkins
add a comment |
I have SCM
plugin setup to build Jenkins pipeline.
For Branches to build
option I have added the following 2 options-refs/heads/master
and refs/heads/release
I am triggering Jenkins using git hooks on the push of both of these branches.
Problem- on every push Jenkins build is happening through master
branch so scm.branches[0].name
this variable is always giving me master
as value regardless of the branch I have pushed.
How I can get different branches in scm
so that I can use respective build processes for them.
git jenkins
Useenv.BRANCH_NAME
and an if statement?
– evolutionxbox
Mar 7 at 0:58
To setenv.BRANCH_NAME
and use inconditional statement
I need to set it usingscm
which is giving wrong branch name (always checkout tomaster
).
– Sandip Pingle
Mar 7 at 16:15
add a comment |
I have SCM
plugin setup to build Jenkins pipeline.
For Branches to build
option I have added the following 2 options-refs/heads/master
and refs/heads/release
I am triggering Jenkins using git hooks on the push of both of these branches.
Problem- on every push Jenkins build is happening through master
branch so scm.branches[0].name
this variable is always giving me master
as value regardless of the branch I have pushed.
How I can get different branches in scm
so that I can use respective build processes for them.
git jenkins
I have SCM
plugin setup to build Jenkins pipeline.
For Branches to build
option I have added the following 2 options-refs/heads/master
and refs/heads/release
I am triggering Jenkins using git hooks on the push of both of these branches.
Problem- on every push Jenkins build is happening through master
branch so scm.branches[0].name
this variable is always giving me master
as value regardless of the branch I have pushed.
How I can get different branches in scm
so that I can use respective build processes for them.
git jenkins
git jenkins
asked Mar 6 at 18:34
Sandip PingleSandip Pingle
3541732
3541732
Useenv.BRANCH_NAME
and an if statement?
– evolutionxbox
Mar 7 at 0:58
To setenv.BRANCH_NAME
and use inconditional statement
I need to set it usingscm
which is giving wrong branch name (always checkout tomaster
).
– Sandip Pingle
Mar 7 at 16:15
add a comment |
Useenv.BRANCH_NAME
and an if statement?
– evolutionxbox
Mar 7 at 0:58
To setenv.BRANCH_NAME
and use inconditional statement
I need to set it usingscm
which is giving wrong branch name (always checkout tomaster
).
– Sandip Pingle
Mar 7 at 16:15
Use
env.BRANCH_NAME
and an if statement?– evolutionxbox
Mar 7 at 0:58
Use
env.BRANCH_NAME
and an if statement?– evolutionxbox
Mar 7 at 0:58
To set
env.BRANCH_NAME
and use in conditional statement
I need to set it using scm
which is giving wrong branch name (always checkout to master
).– Sandip Pingle
Mar 7 at 16:15
To set
env.BRANCH_NAME
and use in conditional statement
I need to set it using scm
which is giving wrong branch name (always checkout to master
).– Sandip Pingle
Mar 7 at 16:15
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030009%2fhow-to-support-multiple-branch-release-using-jenkis-pipeline-scm-script%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030009%2fhow-to-support-multiple-branch-release-using-jenkis-pipeline-scm-script%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Use
env.BRANCH_NAME
and an if statement?– evolutionxbox
Mar 7 at 0:58
To set
env.BRANCH_NAME
and use inconditional statement
I need to set it usingscm
which is giving wrong branch name (always checkout tomaster
).– Sandip Pingle
Mar 7 at 16:15