[ 
https://issues.apache.org/jira/browse/LUCENE-6938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15219107#comment-15219107
 ] 

Ryan Ernst commented on LUCENE-6938:
------------------------------------

It looks like the branch detection logic isn't working given our current naming 
conventions we have in git now. This is the current logic, which worked in svn:

{code}
  if branchName == b'master':
    return 'master'
  if branchName.startswith(b'branch_'):
    return 'stable'
  if branchName.startswith(b'lucene_solr_'):
    return 'release'
{code}

But we now name our release branches like {{branch_5_5}} instead of 
{{lucene_solr_5_5}}. So in this case, the script thought it was a stable 
branch, and thus the version was added as deprecated.

> Convert build to work with Git rather than SVN.
> -----------------------------------------------
>
>                 Key: LUCENE-6938
>                 URL: https://issues.apache.org/jira/browse/LUCENE-6938
>             Project: Lucene - Core
>          Issue Type: Task
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>             Fix For: master, 5.x
>
>         Attachments: LUCENE-6938-1.patch, LUCENE-6938-wc-checker.patch, 
> LUCENE-6938-wc-checker.patch, LUCENE-6938.patch, LUCENE-6938.patch, 
> LUCENE-6938.patch, LUCENE-6938.patch
>
>
> We assume an SVN checkout in parts of our build and will need to move to 
> assuming a Git checkout.
> Patches against https://github.com/dweiss/lucene-solr-svn2git from 
> LUCENE-6933.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to