agora inbox for [email protected]help / color / mirror / Atom feed
[PATCH] POC: syslogger: add Boolean state indicating readiness 90+ messages / 2 participants [nested] [flat]
* [PATCH] POC: syslogger: add Boolean state indicating readiness @ 2026-05-26 10:45 Álvaro Herrera <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Álvaro Herrera @ 2026-05-26 10:45 UTC (permalink / raw) This replaces a comparison of MyBackendType, which was made obsolete by commit 0c8e082fba8d. --- src/backend/postmaster/syslogger.c | 5 +++++ src/backend/utils/error/elog.c | 6 +++--- src/include/postmaster/syslogger.h | 1 + 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/backend/postmaster/syslogger.c b/src/backend/postmaster/syslogger.c index acfe0a01715..d736f6a4fab 100644 --- a/src/backend/postmaster/syslogger.c +++ b/src/backend/postmaster/syslogger.c @@ -76,6 +76,9 @@ char *Log_filename = NULL; bool Log_truncate_on_rotation = false; int Log_file_mode = S_IRUSR | S_IWUSR; +/* for elog.c */ +bool syslogger_setup_done = false; + /* * Private state */ @@ -195,6 +198,8 @@ SysLoggerMain(const void *startup_data, size_t startup_data_len) Assert(startup_data_len == 0); #endif + syslogger_setup_done = true; + /* * Now that we're done reading the startup data, release postmaster's * working memory context. diff --git a/src/backend/utils/error/elog.c b/src/backend/utils/error/elog.c index 50c53b571a0..a6936a0c664 100644 --- a/src/backend/utils/error/elog.c +++ b/src/backend/utils/error/elog.c @@ -3831,7 +3831,7 @@ send_message_to_server_log(ErrorData *edata) * pipe). If this is not possible, fallback to an entry written to * stderr. */ - if (redirection_done || MyBackendType == B_LOGGER) + if (redirection_done || syslogger_setup_done) write_csvlog(edata); else fallback_to_stderr = true; @@ -3845,7 +3845,7 @@ send_message_to_server_log(ErrorData *edata) * pipe). If this is not possible, fallback to an entry written to * stderr. */ - if (redirection_done || MyBackendType == B_LOGGER) + if (redirection_done || syslogger_setup_done) { write_jsonlog(edata); } @@ -3885,7 +3885,7 @@ send_message_to_server_log(ErrorData *edata) } /* If in the syslogger process, try to write messages direct to file */ - if (MyBackendType == B_LOGGER) + if (syslogger_setup_done) write_syslogger_file(buf.data, buf.len, LOG_DESTINATION_STDERR); /* No more need of the message formatted for stderr */ diff --git a/src/include/postmaster/syslogger.h b/src/include/postmaster/syslogger.h index 30c4b2daf3f..44409fc2542 100644 --- a/src/include/postmaster/syslogger.h +++ b/src/include/postmaster/syslogger.h @@ -85,6 +85,7 @@ extern PGDLLIMPORT int syslogPipe[2]; extern PGDLLIMPORT HANDLE syslogPipe[2]; #endif +extern bool syslogger_setup_done; extern int SysLogger_Start(int child_slot); -- 2.47.3 --oji7a74ejnbtd35k-- ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <[email protected]> 0 siblings, 0 replies; 90+ messages in thread From: Andres Freund @ 2026-06-03 17:38 UTC (permalink / raw) --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a570b9e2c8d..fa347847e02 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -317,7 +317,7 @@ jobs: meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup || exit 1 echo ::endgroup:: - meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} ${{env.MTEST_TARGET}} + meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --no-suite setup ${{env.MTEST_TARGET}} - &linux_collect_cores_step name: Core backtraces -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0018-ci-Only-use-pwsh-not-pwsh-and-powershell.patch" ^ permalink raw reply [nested|flat] 90+ messages in thread
end of thread, other threads:[~2026-06-03 17:38 UTC | newest] Thread overview: 90+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2026-05-26 10:45 [PATCH] POC: syslogger: add Boolean state indicating readiness Álvaro Herrera <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox