[Libre-soc-dev] Build failed: Kazan / mirrors / openpower-isa master: Commit 2f3b080: add version constraints on setup install_requires

Luke Kenneth Casson Leighton lkcl at lkcl.net
Wed Jun 15 04:17:14 BST 2022


On Wed, Jun 15, 2022 at 1:17 AM Jacob Lifshay via Libre-soc-dev
<libre-soc-dev at lists.libre-soc.org> wrote:

> >  [33;1mJob's log exceeded limit of 4194304 bytes.
> > Job execution will continue but no more output will be collected. [0;m
> >
>
> Luke, that's why I keep saying you need less print() calls...

corollary: that is why i have told you that *in no way* would it be
practical or acceptable to have the CI build output sent to a mailing
list stored and archived on the server: the server would be
completely overwhelmed within a few months.

that debug output log is absolutely critical and essential for the
development of the simulator.  it is actually an extremely complex
piece of software that would be absolutely impossible to have
developed without having full, complete and detailed log output.

when doing further development that debug log output will INCREASE.

in absolutely no way whatsoever will that debug log output be
removed or decrease, it is far too important.

it is nearly two years since the simulator was first created and it
is slightly alarming to me that you are only now raising this on
the mailing list.

the discussion with Lauri to add a log() function was also eight to
ten months ago.

https://git.libre-soc.org/?p=openpower-isa.git;a=blob;f=src/openpower/util.py;hb=HEAD#l91

  91 def log(*args, **kwargs):
  92     """verbose printing, disabled if an ENV VAR "SILENCELOG" exists.
  93     """
  94     if 'SILENCELOG' in os.environ:
  95         return
  96     print(*args, **kwargs)



More information about the Libre-soc-dev mailing list