You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/09/22 19:04:15 UTC

svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Author: mikemccand
Date: Sat Sep 22 17:04:14 2012
New Revision: 1388844

URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
Log:
hack: skip .properties from POM checking; really we need to figure out why .properties is in POMtemplates[project] to begin with...

Modified:
    lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Modified: lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012
@@ -982,6 +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
   xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
   for project in ('lucene', 'solr'):
     for POMtemplate in POMtemplates[project]:
+      if POMtemplate.endswith('.properties'):
+        continue
       print('      Checking POM template %s' % POMtemplate)
       treeRoot = ET.parse(POMtemplate).getroot()
       skipDeploy = False



Re: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Posted by Michael McCandless <lu...@mikemccandless.com>.
OK will do.

Let's wait and see how smoke tester does...

Mike McCandless

http://blog.mikemccandless.com

On Sat, Sep 22, 2012 at 1:14 PM, Uwe Schindler <uw...@thetaphi.de> wrote:
> I fit works, can you forward port (and remove the print again)? I wanted to run the 4.x and trunk checker, too - so Robert gets happy with my groovy scripts.
>
> Uwe
>
> -----
> Uwe Schindler
> H.-H.-Meier-Allee 63, D-28213 Bremen
> http://www.thetaphi.de
> eMail: uwe@thetaphi.de
>
>
>> -----Original Message-----
>> From: Michael McCandless [mailto:lucene@mikemccandless.com]
>> Sent: Saturday, September 22, 2012 7:10 PM
>> To: dev@lucene.apache.org
>> Subject: Re: svn commit: r1388844 -
>> /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py
>>
>> OK I inverted it :)
>>
>> Hopefully Steve will come to the rescue with the proper fix!
>>
>> Mike McCandless
>>
>> http://blog.mikemccandless.com
>>
>> On Sat, Sep 22, 2012 at 1:07 PM, Uwe Schindler <uw...@thetaphi.de> wrote:
>> > I would invert that check to test for *.xml.template.
>> >
>> > Uwe
>> >
>> > -----
>> > Uwe Schindler
>> > H.-H.-Meier-Allee 63, D-28213 Bremen
>> > http://www.thetaphi.de
>> > eMail: uwe@thetaphi.de
>> >
>> >
>> >> -----Original Message-----
>> >> From: mikemccand@apache.org [mailto:mikemccand@apache.org]
>> >> Sent: Saturday, September 22, 2012 7:04 PM
>> >> To: commits@lucene.apache.org
>> >> Subject: svn commit: r1388844 -
>> >> /lucene/dev/branches/lucene_solr_4_0/dev-
>> >> tools/scripts/smokeTestRelease.py
>> >>
>> >> Author: mikemccand
>> >> Date: Sat Sep 22 17:04:14 2012
>> >> New Revision: 1388844
>> >>
>> >> URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
>> >> Log:
>> >> hack: skip .properties from POM checking; really we need to figure
>> >> out why .properties is in POMtemplates[project] to begin with...
>> >>
>> >> Modified:
>> >>     lucene/dev/branches/lucene_solr_4_0/dev-
>> >> tools/scripts/smokeTestRelease.py
>> >>
>> >> Modified: lucene/dev/branches/lucene_solr_4_0/dev-
>> >> tools/scripts/smokeTestRelease.py
>> >> URL:
>> >> http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-
>> >>
>> tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&v
>> >> i
>> >> ew=diff
>> >>
>> ================================================================
>> >> ==============
>> >> --- lucene/dev/branches/lucene_solr_4_0/dev-
>> >> tools/scripts/smokeTestRelease.py (original)
>> >> +++ lucene/dev/branches/lucene_solr_4_0/dev-
>> >> tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012 @@ -982,6
>> >> +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
>> >>    xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
>> >>    for project in ('lucene', 'solr'):
>> >>      for POMtemplate in POMtemplates[project]:
>> >> +      if POMtemplate.endswith('.properties'):
>> >> +        continue
>> >>        print('      Checking POM template %s' % POMtemplate)
>> >>        treeRoot = ET.parse(POMtemplate).getroot()
>> >>        skipDeploy = False
>> >
>> >
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For
>> > additional commands, e-mail: dev-help@lucene.apache.org
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional
>> commands, e-mail: dev-help@lucene.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>

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


RE: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Posted by Uwe Schindler <uw...@thetaphi.de>.
I fit works, can you forward port (and remove the print again)? I wanted to run the 4.x and trunk checker, too - so Robert gets happy with my groovy scripts.

Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: uwe@thetaphi.de


> -----Original Message-----
> From: Michael McCandless [mailto:lucene@mikemccandless.com]
> Sent: Saturday, September 22, 2012 7:10 PM
> To: dev@lucene.apache.org
> Subject: Re: svn commit: r1388844 -
> /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py
> 
> OK I inverted it :)
> 
> Hopefully Steve will come to the rescue with the proper fix!
> 
> Mike McCandless
> 
> http://blog.mikemccandless.com
> 
> On Sat, Sep 22, 2012 at 1:07 PM, Uwe Schindler <uw...@thetaphi.de> wrote:
> > I would invert that check to test for *.xml.template.
> >
> > Uwe
> >
> > -----
> > Uwe Schindler
> > H.-H.-Meier-Allee 63, D-28213 Bremen
> > http://www.thetaphi.de
> > eMail: uwe@thetaphi.de
> >
> >
> >> -----Original Message-----
> >> From: mikemccand@apache.org [mailto:mikemccand@apache.org]
> >> Sent: Saturday, September 22, 2012 7:04 PM
> >> To: commits@lucene.apache.org
> >> Subject: svn commit: r1388844 -
> >> /lucene/dev/branches/lucene_solr_4_0/dev-
> >> tools/scripts/smokeTestRelease.py
> >>
> >> Author: mikemccand
> >> Date: Sat Sep 22 17:04:14 2012
> >> New Revision: 1388844
> >>
> >> URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
> >> Log:
> >> hack: skip .properties from POM checking; really we need to figure
> >> out why .properties is in POMtemplates[project] to begin with...
> >>
> >> Modified:
> >>     lucene/dev/branches/lucene_solr_4_0/dev-
> >> tools/scripts/smokeTestRelease.py
> >>
> >> Modified: lucene/dev/branches/lucene_solr_4_0/dev-
> >> tools/scripts/smokeTestRelease.py
> >> URL:
> >> http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-
> >>
> tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&v
> >> i
> >> ew=diff
> >>
> ================================================================
> >> ==============
> >> --- lucene/dev/branches/lucene_solr_4_0/dev-
> >> tools/scripts/smokeTestRelease.py (original)
> >> +++ lucene/dev/branches/lucene_solr_4_0/dev-
> >> tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012 @@ -982,6
> >> +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
> >>    xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
> >>    for project in ('lucene', 'solr'):
> >>      for POMtemplate in POMtemplates[project]:
> >> +      if POMtemplate.endswith('.properties'):
> >> +        continue
> >>        print('      Checking POM template %s' % POMtemplate)
> >>        treeRoot = ET.parse(POMtemplate).getroot()
> >>        skipDeploy = False
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For
> > additional commands, e-mail: dev-help@lucene.apache.org
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional
> commands, e-mail: dev-help@lucene.apache.org


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


RE: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Posted by Steven A Rowe <sa...@syr.edu>.
Thanks Mike,

I switched to properly populating POMtemplates, and removed the debug printing.  Committed to the release branch, branch_4x, and trunk.

I also enabled running the smoke tester under Cygwin again.  It passed for me using the 'ant nightly-smoke'-produced fake release.

Steve

-----Original Message-----
From: Michael McCandless [mailto:lucene@mikemccandless.com] 
Sent: Saturday, September 22, 2012 1:10 PM
To: dev@lucene.apache.org
Subject: Re: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

OK I inverted it :)

Hopefully Steve will come to the rescue with the proper fix!

Mike McCandless

http://blog.mikemccandless.com

On Sat, Sep 22, 2012 at 1:07 PM, Uwe Schindler <uw...@thetaphi.de> wrote:
> I would invert that check to test for *.xml.template.
>
> Uwe
>
> -----
> Uwe Schindler
> H.-H.-Meier-Allee 63, D-28213 Bremen
> http://www.thetaphi.de
> eMail: uwe@thetaphi.de
>
>
>> -----Original Message-----
>> From: mikemccand@apache.org [mailto:mikemccand@apache.org]
>> Sent: Saturday, September 22, 2012 7:04 PM
>> To: commits@lucene.apache.org
>> Subject: svn commit: r1388844 - 
>> /lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py
>>
>> Author: mikemccand
>> Date: Sat Sep 22 17:04:14 2012
>> New Revision: 1388844
>>
>> URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
>> Log:
>> hack: skip .properties from POM checking; really we need to figure 
>> out why .properties is in POMtemplates[project] to begin with...
>>
>> Modified:
>>     lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py
>>
>> Modified: lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py
>> URL: 
>> http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&v
>> i
>> ew=diff
>> ================================================================
>> ==============
>> --- lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py (original)
>> +++ lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012 @@ -982,6 
>> +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
>>    xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
>>    for project in ('lucene', 'solr'):
>>      for POMtemplate in POMtemplates[project]:
>> +      if POMtemplate.endswith('.properties'):
>> +        continue
>>        print('      Checking POM template %s' % POMtemplate)
>>        treeRoot = ET.parse(POMtemplate).getroot()
>>        skipDeploy = False
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For 
> additional commands, e-mail: dev-help@lucene.apache.org
>

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


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


Re: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Posted by Michael McCandless <lu...@mikemccandless.com>.
OK I inverted it :)

Hopefully Steve will come to the rescue with the proper fix!

Mike McCandless

http://blog.mikemccandless.com

On Sat, Sep 22, 2012 at 1:07 PM, Uwe Schindler <uw...@thetaphi.de> wrote:
> I would invert that check to test for *.xml.template.
>
> Uwe
>
> -----
> Uwe Schindler
> H.-H.-Meier-Allee 63, D-28213 Bremen
> http://www.thetaphi.de
> eMail: uwe@thetaphi.de
>
>
>> -----Original Message-----
>> From: mikemccand@apache.org [mailto:mikemccand@apache.org]
>> Sent: Saturday, September 22, 2012 7:04 PM
>> To: commits@lucene.apache.org
>> Subject: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py
>>
>> Author: mikemccand
>> Date: Sat Sep 22 17:04:14 2012
>> New Revision: 1388844
>>
>> URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
>> Log:
>> hack: skip .properties from POM checking; really we need to figure out why
>> .properties is in POMtemplates[project] to begin with...
>>
>> Modified:
>>     lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py
>>
>> Modified: lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py
>> URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&vi
>> ew=diff
>> ================================================================
>> ==============
>> --- lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py (original)
>> +++ lucene/dev/branches/lucene_solr_4_0/dev-
>> tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012
>> @@ -982,6 +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
>>    xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
>>    for project in ('lucene', 'solr'):
>>      for POMtemplate in POMtemplates[project]:
>> +      if POMtemplate.endswith('.properties'):
>> +        continue
>>        print('      Checking POM template %s' % POMtemplate)
>>        treeRoot = ET.parse(POMtemplate).getroot()
>>        skipDeploy = False
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>

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


RE: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Posted by Uwe Schindler <uw...@thetaphi.de>.
I would invert that check to test for *.xml.template.

Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: uwe@thetaphi.de


> -----Original Message-----
> From: mikemccand@apache.org [mailto:mikemccand@apache.org]
> Sent: Saturday, September 22, 2012 7:04 PM
> To: commits@lucene.apache.org
> Subject: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-
> tools/scripts/smokeTestRelease.py
> 
> Author: mikemccand
> Date: Sat Sep 22 17:04:14 2012
> New Revision: 1388844
> 
> URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
> Log:
> hack: skip .properties from POM checking; really we need to figure out why
> .properties is in POMtemplates[project] to begin with...
> 
> Modified:
>     lucene/dev/branches/lucene_solr_4_0/dev-
> tools/scripts/smokeTestRelease.py
> 
> Modified: lucene/dev/branches/lucene_solr_4_0/dev-
> tools/scripts/smokeTestRelease.py
> URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-
> tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&vi
> ew=diff
> ================================================================
> ==============
> --- lucene/dev/branches/lucene_solr_4_0/dev-
> tools/scripts/smokeTestRelease.py (original)
> +++ lucene/dev/branches/lucene_solr_4_0/dev-
> tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012
> @@ -982,6 +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
>    xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
>    for project in ('lucene', 'solr'):
>      for POMtemplate in POMtemplates[project]:
> +      if POMtemplate.endswith('.properties'):
> +        continue
>        print('      Checking POM template %s' % POMtemplate)
>        treeRoot = ET.parse(POMtemplate).getroot()
>        skipDeploy = False



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


Re: svn commit: r1388844 - /lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py

Posted by Robert Muir <rc...@gmail.com>.
Thanks, new build:
http://sierranevada.servebeer.com/job/Lucene-Solr-40-ReleaseSmoke/12/

if it fails: http://sierranevada.servebeer.com/beer/?

On Sat, Sep 22, 2012 at 1:04 PM,  <mi...@apache.org> wrote:
> Author: mikemccand
> Date: Sat Sep 22 17:04:14 2012
> New Revision: 1388844
>
> URL: http://svn.apache.org/viewvc?rev=1388844&view=rev
> Log:
> hack: skip .properties from POM checking; really we need to figure out why .properties is in POMtemplates[project] to begin with...
>
> Modified:
>     lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py
>
> Modified: lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py
> URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py?rev=1388844&r1=1388843&r2=1388844&view=diff
> ==============================================================================
> --- lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py (original)
> +++ lucene/dev/branches/lucene_solr_4_0/dev-tools/scripts/smokeTestRelease.py Sat Sep 22 17:04:14 2012
> @@ -982,6 +982,8 @@ def verifyArtifactPerPOMtemplate(POMtemp
>    xpathSkipConfiguration = '{0}configuration/{0}skip'.format(namespace)
>    for project in ('lucene', 'solr'):
>      for POMtemplate in POMtemplates[project]:
> +      if POMtemplate.endswith('.properties'):
> +        continue
>        print('      Checking POM template %s' % POMtemplate)
>        treeRoot = ET.parse(POMtemplate).getroot()
>        skipDeploy = False
>
>



-- 
lucidworks.com

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