Re: CI and test improvements

Поиск
Список
Период
Сортировка
От Justin Pryzby
Тема Re: CI and test improvements
Дата
Msg-id 20221117041631.GD11463@telsasoft.com
обсуждение исходный текст
Ответ на Re: CI and test improvements  (Andres Freund <andres@anarazel.de>)
Список pgsql-hackers
On Wed, Nov 16, 2022 at 08:08:32PM -0800, Andres Freund wrote:
> I also don't like my "cores_script". Not quite sure yet how to do that
> more cleanly.

I don't know which is cleaner:

ls /core* && mv /tmp/core* /tmp/cores

find / -maxdepth 1 -type f -name 'core*' -print0 |
    xargs -r0 mv -vt /tmp/cores

for a in /core*; do [ ! -e "$a" ] || mv "$a" /tmp/cores; done



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: CI and test improvements
Следующее
От: Ian Lawrence Barwick
Дата:
Сообщение: Re: pglz compression performance, take two