Обсуждение: cirrus scripts could use make -k

Поиск
Список
Период
Сортировка

cirrus scripts could use make -k

От
Peter Eisentraut
Дата:
I would find it useful if the cirrus scripts used make -k (and ninja -k) 
to keep building everything in the presence of errors.  For example, I 
once had some issue in code that caused a bunch of compiler warnings on 
Windows.  The cirrus build would only show me the first one, then I had 
to fix, reupload, see the next one, etc.  Are there any drawbacks to 
using these options in this context?



Re: cirrus scripts could use make -k

От
Andres Freund
Дата:
Hi,

On 2022-12-15 12:31:26 +0100, Peter Eisentraut wrote:
> I would find it useful if the cirrus scripts used make -k (and ninja -k) to
> keep building everything in the presence of errors.  For example, I once had
> some issue in code that caused a bunch of compiler warnings on Windows.  The
> cirrus build would only show me the first one, then I had to fix, reupload,
> see the next one, etc.  Are there any drawbacks to using these options in
> this context?
> 

-1 - it makes it much harder to find the first error. To the point of
the error output getting big enough that CI task output gets deleted
more quickly because of the larger output.

I can see -k 3 or something though.

Greetings,

Andres Freund