[JIRA] (JENKINS-34395) Support for building tags

2017-02-13 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 +1 here  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-02-13 Thread ch...@orr.me.uk (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Christopher Orr commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 Please don't add "+1" to issues without further information — hit the "Vote for this issue" link in the top-right.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-02-13 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco edited a comment on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 +1  here EDIT:We are moving actual jobs to pipeline. Our goal is build branches master, feature and PR but if the commit was pointed by a TAG (that means GIT_TAG or TAG_NAME exists and are not empty) than we do also an extra publish stage. Without tag variable we have to duplicate all job twice.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-03-07 Thread dko...@shlrm.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David Kowis commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 tl;dr: I don't think this is actually a problem in the github-branch-source plugin (but I'm not an expert).   This is hitting me too, for all the same reasons everyone is mentioning.  I spent some time looking at the assigned component, but I wasn't able to find anything that actually prevented it from running a build based on tags. https://github.com/jenkinsci/github-branch-source-plugin/blob/master/src/main/java/org/jenkinsci/plugins/github_branch_source/PushGHEventSubscriber.java#L231-L243 I cannot find anything in there that would short circuit it if the options are enabled. This would, I think, trigger a build. I don't think the problem exists in here, the hook parsing logic should result in everything being found. Whatever calls this `heads` method probably gets back a list of heads including the one from the tag push event.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-03-07 Thread dko...@shlrm.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David Kowis commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 Ohhh, maybe I'm wrong. https://github.com/jenkinsci/github-branch-source-plugin/blob/master/src/main/java/org/jenkinsci/plugins/github_branch_source/GitHubSCMProbe.java#L60-L65   There's some assumptions that the ref always starts with `refs/heads` and is parsed out, so a tag will come in as `refs/heads/refs/tags/`. Obviously that isn't going to work. If the SCMProbe is the thing that actually triggers a build, this might be all that's needed to fix it. We should probably have a thing that handles the tag bit so that way we can check out an actual tag, but it's probably not good to have tag parsing logic in more than one place. Still learning things and you might get a few more play-by-play comments   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-01-05 Thread pw...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Patrick Wolf assigned an issue to CloudBees Inc.  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-34395  
 
 
  Support for building tags   
 

  
 
 
 
 

 
Change By: 
 Patrick Wolf  
 
 
Assignee: 
 Manuel Recena Soto CloudBees Inc.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-01-08 Thread tim....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 tim vdh commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 +1 Was enjoying the pipeline functionality until I hit this issue. My requirements: 
 
one job per repository 
run job on every commit and tag 
if tagged build release 
  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2016-11-09 Thread ikop...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ivan Koptiev commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 +1 to this. Without tags support it's impossible to build projects that are using tags as release identifiers.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2016-11-15 Thread is...@iadk.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Isaac Stefanek commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 Another +1 Jenkins is not only a build automation tool, but also a deployment automation tool. If you want to have your deployments triggered off of tags, then this is a required feature.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-03-30 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 We are in a middle of a migration process to pipeline. I must say this problem really block us   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-03-30 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-34395  
 
 
  Support for building tags   
 

  
 
 
 
 

 
Change By: 
 Avner Hartuv  
 
 
Priority: 
 Minor Major  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.