All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] autobuild-run update
@ 2014-07-08 21:22 Thomas Petazzoni
  2014-07-11 16:36 ` Fabio Porcedda
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2014-07-08 21:22 UTC (permalink / raw)
  To: buildroot

Hello,

I've pushed a few updates to the autobuild-run script:

  autobuild-run: don't try to build XBMC
  http://git.buildroot.net/buildroot-test/commit/?id=8a7fc81cd82ce408e6818ad64b8ab6aab83a30c4

  autobuild-run: do not build lttng-tools with toolchains affected by PR58854
  http://git.buildroot.net/buildroot-test/commit/?id=ec03a70a7428005219e23fd4c837ac80b3988a89

  autobuild-run: do not build sdl with toolchains affected by PR60155
  http://git.buildroot.net/buildroot-test/commit/?id=9336e1725e586cd6037e7f61d25dfd089f0d13e5

I've updated the script on the Free Electrons build server with those
updates. However, while doing so, a few failed builds were generated
and are visible in the http://autobuild.buildroot.org output. It looks
like the autobuild-run script needs some improvements to handle clean
termination of builds. Contributions welcome.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] autobuild-run update
  2014-07-08 21:22 [Buildroot] autobuild-run update Thomas Petazzoni
@ 2014-07-11 16:36 ` Fabio Porcedda
  2014-07-11 18:11   ` Thomas Petazzoni
  2014-07-11 18:12   ` Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Fabio Porcedda @ 2014-07-11 16:36 UTC (permalink / raw)
  To: buildroot

On Tue, Jul 8, 2014 at 11:22 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Hello,
>
> I've pushed a few updates to the autobuild-run script:
>
>   autobuild-run: don't try to build XBMC
>   http://git.buildroot.net/buildroot-test/commit/?id=8a7fc81cd82ce408e6818ad64b8ab6aab83a30c4
>
>   autobuild-run: do not build lttng-tools with toolchains affected by PR58854
>   http://git.buildroot.net/buildroot-test/commit/?id=ec03a70a7428005219e23fd4c837ac80b3988a89
>
>   autobuild-run: do not build sdl with toolchains affected by PR60155
>   http://git.buildroot.net/buildroot-test/commit/?id=9336e1725e586cd6037e7f61d25dfd089f0d13e5
>
> I've updated the script on the Free Electrons build server with those
> updates. However, while doing so, a few failed builds were generated
> and are visible in the http://autobuild.buildroot.org output. It looks
> like the autobuild-run script needs some improvements to handle clean
> termination of builds. Contributions welcome.

Hi Thomas,
thanks for the great work.

I'm trying to use it on a Ubuntu 14.04 but it fails in few seconds
with this error:

 ./autobuild-run --ninstances 2 --njobs 3
WARN: due to the lack of http login/password details, results will not
be submitted
WARN: tarballs of results will be kept locally only
Process Process-1:
Traceback (most recent call last):
  File "/usr/lib/python2.7/multiprocessing/process.py", line 258, in _bootstrap
    self.run()
  File "/usr/lib/python2.7/multiprocessing/process.py", line 114, in run
    self._target(*self._args, **self._kwargs)
  File "./autobuild-run", line 445, in run_instance
    ret = gen_config(instance, njobs, instance_log)
  File "./autobuild-run", line 269, in gen_config
    configs = get_toolchain_configs()
  File "./autobuild-run", line 125, in get_toolchain_configs
    r = urllib2.urlopen(config["url"])
  File "/usr/lib/python2.7/urllib2.py", line 127, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.7/urllib2.py", line 410, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 523, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 448, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 531, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 404: Not Found
Process Process-2:
Traceback (most recent call last):
  File "/usr/lib/python2.7/multiprocessing/process.py", line 258, in _bootstrap
    self.run()
  File "/usr/lib/python2.7/multiprocessing/process.py", line 114, in run
    self._target(*self._args, **self._kwargs)
  File "./autobuild-run", line 445, in run_instance
    ret = gen_config(instance, njobs, instance_log)
  File "./autobuild-run", line 269, in gen_config
    configs = get_toolchain_configs()
  File "./autobuild-run", line 125, in get_toolchain_configs
    r = urllib2.urlopen(config["url"])
  File "/usr/lib/python2.7/urllib2.py", line 127, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.7/urllib2.py", line 410, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 523, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 448, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 531, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 404: Not Found

Do you have any idea on how to fix this?

Thanks & BR
-- 
Fabio Porcedda

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] autobuild-run update
  2014-07-11 16:36 ` Fabio Porcedda
@ 2014-07-11 18:11   ` Thomas Petazzoni
  2014-07-11 18:12   ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2014-07-11 18:11 UTC (permalink / raw)
  To: buildroot

Dear Fabio Porcedda,

On Fri, 11 Jul 2014 18:36:36 +0200, Fabio Porcedda wrote:

> I'm trying to use it on a Ubuntu 14.04 but it fails in few seconds
> with this error:
> 
>  ./autobuild-run --ninstances 2 --njobs 3

[...]

> HTTPError: HTTP Error 404: Not Found

Aah, yes, my bad. I removed the AVR32 toolchain configuration file
yesterday, but forgot to remove this toolchain from the csv file that
describes all the available toolchain configurations.

This is now fixed, so the script should work again (and the Free
Electrons build server should start again doing some builds).

Thanks for the report!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] autobuild-run update
  2014-07-11 16:36 ` Fabio Porcedda
  2014-07-11 18:11   ` Thomas Petazzoni
@ 2014-07-11 18:12   ` Thomas Petazzoni
  2014-07-11 22:13     ` Fabio Porcedda
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2014-07-11 18:12 UTC (permalink / raw)
  To: buildroot

Dear Fabio Porcedda,

On Fri, 11 Jul 2014 18:36:36 +0200, Fabio Porcedda wrote:

> I'm trying to use it on a Ubuntu 14.04 but it fails in few seconds
> with this error:
> 
>  ./autobuild-run --ninstances 2 --njobs 3

[...]

> HTTPError: HTTP Error 404: Not Found

Aah, yes, my bad. I removed the AVR32 toolchain configuration file
yesterday, but forgot to remove this toolchain from the csv file that
describes all the available toolchain configurations.

This is now fixed, so the script should work again (and the Free
Electrons build server should start again doing some builds).

Thanks for the report!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] autobuild-run update
  2014-07-11 18:12   ` Thomas Petazzoni
@ 2014-07-11 22:13     ` Fabio Porcedda
  0 siblings, 0 replies; 5+ messages in thread
From: Fabio Porcedda @ 2014-07-11 22:13 UTC (permalink / raw)
  To: buildroot

On Fri, Jul 11, 2014 at 8:12 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Dear Fabio Porcedda,
>
> On Fri, 11 Jul 2014 18:36:36 +0200, Fabio Porcedda wrote:
>
>> I'm trying to use it on a Ubuntu 14.04 but it fails in few seconds
>> with this error:
>>
>>  ./autobuild-run --ninstances 2 --njobs 3
>
> [...]
>
>> HTTPError: HTTP Error 404: Not Found
>
> Aah, yes, my bad. I removed the AVR32 toolchain configuration file
> yesterday, but forgot to remove this toolchain from the csv file that
> describes all the available toolchain configurations.
>
> This is now fixed, so the script should work again (and the Free
> Electrons build server should start again doing some builds).

Great, thanks.

BR
-- 
Fabio Porcedda

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-07-11 22:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-08 21:22 [Buildroot] autobuild-run update Thomas Petazzoni
2014-07-11 16:36 ` Fabio Porcedda
2014-07-11 18:11   ` Thomas Petazzoni
2014-07-11 18:12   ` Thomas Petazzoni
2014-07-11 22:13     ` Fabio Porcedda

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.