You are viewing a plain text version of this content. The canonical link for it is here.
Posted to infrastructure-issues@apache.org by "Gavin (JIRA)" <ji...@apache.org> on 2009/04/29 02:02:30 UTC

[jira] Created: (INFRA-2025) Projects that use a basedir below trunk for project builds fail

Projects that use a basedir below trunk for project builds fail
---------------------------------------------------------------

                 Key: INFRA-2025
                 URL: https://issues.apache.org/jira/browse/INFRA-2025
             Project: Infrastructure
          Issue Type: Bug
      Security Level: public (Regular issues)
          Components: Buildbot
            Reporter: Gavin


Projects that use a basedir below trunk for project builds fail due to the way svn_buildbot.py is set to send information to buildbot upon a commit.

svn_buildbot.py looks for matches to /trunk/ or /branches/branch/ 

For projects like OpenEJB this cause a problem when their main code is on /trunk/openejb3/ 

The tests build at the wrong level and so POM files are not found (this is only one example).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (INFRA-2025) Projects that use a basedir below trunk for project builds fail

Posted by "Gavin (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-2025?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12703900#action_12703900 ] 

Gavin commented on INFRA-2025:
------------------------------

As a workaround to get OpenEJB going, I'm going to add a specific check to svn_buildbot.py until a better fix is found.

    i = 0
    found = False
    for piece in pieces:
        i = i + 1
#add openejb fix here
        if piece == 'openejb':
          i= i + 2
         found = True
         break
#end openejb fix
        # Find trunk, we are done
        # changed from if to elif
        elif piece == 'trunk': 
            found = True
            break
        elif piece == 'branches':
            i = i + 1
            found = True
            break


> Projects that use a basedir below trunk for project builds fail
> ---------------------------------------------------------------
>
>                 Key: INFRA-2025
>                 URL: https://issues.apache.org/jira/browse/INFRA-2025
>             Project: Infrastructure
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: Buildbot
>            Reporter: Gavin
>
> Projects that use a basedir below trunk for project builds fail due to the way svn_buildbot.py is set to send information to buildbot upon a commit.
> svn_buildbot.py looks for matches to /trunk/ or /branches/branch/ 
> For projects like OpenEJB this cause a problem when their main code is on /trunk/openejb3/ 
> The tests build at the wrong level and so POM files are not found (this is only one example).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (INFRA-2025) Projects that use a basedir below trunk for project builds fail

Posted by "#asfinfra IRC Bot (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-2025?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12703942#action_12703942 ] 

#asfinfra IRC Bot commented on INFRA-2025:
------------------------------------------

<gmcdonald> patch applied, we'll see mhow it goes


> Projects that use a basedir below trunk for project builds fail
> ---------------------------------------------------------------
>
>                 Key: INFRA-2025
>                 URL: https://issues.apache.org/jira/browse/INFRA-2025
>             Project: Infrastructure
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: Buildbot
>            Reporter: Gavin
>
> Projects that use a basedir below trunk for project builds fail due to the way svn_buildbot.py is set to send information to buildbot upon a commit.
> svn_buildbot.py looks for matches to /trunk/ or /branches/branch/ 
> For projects like OpenEJB this cause a problem when their main code is on /trunk/openejb3/ 
> The tests build at the wrong level and so POM files are not found (this is only one example).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (INFRA-2025) Projects that use a basedir below trunk for project builds fail

Posted by "Gavin (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/INFRA-2025?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gavin closed INFRA-2025.
------------------------

    Resolution: Fixed

sorted, thanks to gozer and joes

> Projects that use a basedir below trunk for project builds fail
> ---------------------------------------------------------------
>
>                 Key: INFRA-2025
>                 URL: https://issues.apache.org/jira/browse/INFRA-2025
>             Project: Infrastructure
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: Buildbot
>            Reporter: Gavin
>
> Projects that use a basedir below trunk for project builds fail due to the way svn_buildbot.py is set to send information to buildbot upon a commit.
> svn_buildbot.py looks for matches to /trunk/ or /branches/branch/ 
> For projects like OpenEJB this cause a problem when their main code is on /trunk/openejb3/ 
> The tests build at the wrong level and so POM files are not found (this is only one example).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.