Re: buildbot exception in on ofbizTrunkFramework

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: buildbot exception in on ofbizTrunkFramework

Jacques Le Roux
Administrator
All works fine locally. I mean I tested the functionality for all the branches. Not sure why new

    <<implementation 'org.apache.xmlgraphics:batik:1.13'>>

did not download on Buildbot

Checking that...

Jacques

Le 01/12/2020 à 10:33, [hidden email] a écrit :

> The Buildbot has detected a build exception on builder ofbizTrunkFramework while building ofbiz-framework. Full details are available at:
>      https://ci.apache.org/builders/ofbizTrunkFramework/builds/1992
>
> Buildbot URL: https://ci.apache.org/
>
> Buildslave for this Build: asf946_ubuntu
>
> Build Reason: The AnyBranchScheduler scheduler named 'onTrunkFrameworkCommit' triggered this build
> Build Source Stamp: [branch trunk] 73fcf304930b1696312318984fbcd523228e60f1
> Blamelist: Jacques Le Roux <[hidden email]>
>
> BUILD FAILED: exception build upload test-results part 1
>
> Sincerely,
>   -The Buildbot
>
>
>
Reply | Threaded
Open this post in threaded view
|

Re: buildbot exception in on ofbizTrunkFramework

Jacques Le Roux
Administrator
OK, after OFBIZ-12080 all the demos are running again. I ran them manually and will make them to update tonight and ahead.

The line below is in the main build.gradle. That's why I still don't understand why batik is not downloaded by Gradle when Buildbot runs the framework
only.

I will check that later, after updating the site information about demos.

Le 01/12/2020 à 11:13, Jacques Le Roux a écrit :

> All works fine locally. I mean I tested the functionality for all the branches. Not sure why new
>
>    <<implementation 'org.apache.xmlgraphics:batik:1.13'>>
>
> did not download on Buildbot
>
> Checking that...
>
> Jacques
>
> Le 01/12/2020 à 10:33, [hidden email] a écrit :
>> The Buildbot has detected a build exception on builder ofbizTrunkFramework while building ofbiz-framework. Full details are available at:
>> https://ci.apache.org/builders/ofbizTrunkFramework/builds/1992
>>
>> Buildbot URL: https://ci.apache.org/
>>
>> Buildslave for this Build: asf946_ubuntu
>>
>> Build Reason: The AnyBranchScheduler scheduler named 'onTrunkFrameworkCommit' triggered this build
>> Build Source Stamp: [branch trunk] 73fcf304930b1696312318984fbcd523228e60f1
>> Blamelist: Jacques Le Roux <[hidden email]>
>>
>> BUILD FAILED: exception build upload test-results part 1
>>
>> Sincerely,
>>   -The Buildbot
>>
>>
>>
Reply | Threaded
Open this post in threaded view
|

Re: buildbot exception in on ofbizTrunkFramework

Michael Brohl-3
Hi Jacques,

I can confirm that the build error happens at least on two local
developer machines on our side too.

I think we have conflicts here:

build.gradle (2 matches)
193: implementation 'org.apache.xmlgraphics:batik:1.13'
222: runtimeOnly
'org.codeartisans.thirdparties.swing:batik-all:1.8pre-r1084380'

I know from custom projects that the batik package structure has changed
from 1.8 to current versions.

We changed 222 to

runtime 'org.apache.xmlgraphics:batik-all:1.13'

and everything worked fine.


Best regards,

Michael Brohl

ecomify GmbH - www.ecomify.de


Am 01.12.20 um 12:08 schrieb Jacques Le Roux:

> OK, after OFBIZ-12080 all the demos are running again. I ran them
> manually and will make them to update tonight and ahead.
>
> The line below is in the main build.gradle. That's why I still don't
> understand why batik is not downloaded by Gradle when Buildbot runs
> the framework only.
>
> I will check that later, after updating the site information about demos.
>
> Le 01/12/2020 à 11:13, Jacques Le Roux a écrit :
>> All works fine locally. I mean I tested the functionality for all the
>> branches. Not sure why new
>>
>>    <<implementation 'org.apache.xmlgraphics:batik:1.13'>>
>>
>> did not download on Buildbot
>>
>> Checking that...
>>
>> Jacques
>>
>> Le 01/12/2020 à 10:33, [hidden email] a écrit :
>>> The Buildbot has detected a build exception on builder
>>> ofbizTrunkFramework while building ofbiz-framework. Full details are
>>> available at:
>>> https://ci.apache.org/builders/ofbizTrunkFramework/builds/1992
>>>
>>> Buildbot URL: https://ci.apache.org/
>>>
>>> Buildslave for this Build: asf946_ubuntu
>>>
>>> Build Reason: The AnyBranchScheduler scheduler named
>>> 'onTrunkFrameworkCommit' triggered this build
>>> Build Source Stamp: [branch trunk]
>>> 73fcf304930b1696312318984fbcd523228e60f1
>>> Blamelist: Jacques Le Roux <[hidden email]>
>>>
>>> BUILD FAILED: exception build upload test-results part 1
>>>
>>> Sincerely,
>>>   -The Buildbot
>>>
>>>
>>>


smime.p7s (5K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: buildbot exception in on ofbizTrunkFramework

jleroux@apache.org
Thanks Michael,

I just needed batik:batik-svg-dom:1.6-1 so simply replaced org.apache.xmlgraphics:batik:1.13

Cheers

Jacques