agora inbox for pgsql-hackers@postgresql.orghelp / color / mirror / Atom feed
[PATCH v5 1/6] Handle pg_get_ruledef default args in system_functions.sql 482+ messages / 2 participants [nested] [flat]
* [PATCH v5 1/6] Handle pg_get_ruledef default args in system_functions.sql @ 2025-12-08 23:41 Mark Wong <markwkm@gmail.com> 0 siblings, 0 replies; 482+ messages in thread From: Mark Wong @ 2025-12-08 23:41 UTC (permalink / raw) Modernize pg_get_ruledef to use proargdefaults for optional pretty argument. --- src/backend/utils/adt/ruleutils.c | 18 ------------------ src/include/catalog/pg_proc.dat | 6 ++---- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/src/backend/utils/adt/ruleutils.c b/src/backend/utils/adt/ruleutils.c index aec5556b008..99ece0c1761 100644 --- a/src/backend/utils/adt/ruleutils.c +++ b/src/backend/utils/adt/ruleutils.c @@ -569,24 +569,6 @@ static void get_json_table_nested_columns(TableFunc *tf, JsonTablePlan *plan, */ Datum pg_get_ruledef(PG_FUNCTION_ARGS) -{ - Oid ruleoid = PG_GETARG_OID(0); - int prettyFlags; - char *res; - - prettyFlags = PRETTYFLAG_INDENT; - - res = pg_get_ruledef_worker(ruleoid, prettyFlags); - - if (res == NULL) - PG_RETURN_NULL(); - - PG_RETURN_TEXT_P(string_to_text(res)); -} - - -Datum -pg_get_ruledef_ext(PG_FUNCTION_ARGS) { Oid ruleoid = PG_GETARG_OID(0); bool pretty = PG_GETARG_BOOL(1); diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index 3579cec5744..66cb016792c 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -3975,9 +3975,6 @@ { oid => '8302', descr => 'source text of a property graph', proname => 'pg_get_propgraphdef', provolatile => 's', prorettype => 'text', proargtypes => 'oid', prosrc => 'pg_get_propgraphdef' }, -{ oid => '1573', descr => 'source text of a rule', - proname => 'pg_get_ruledef', provolatile => 's', prorettype => 'text', - proargtypes => 'oid', prosrc => 'pg_get_ruledef' }, { oid => '1640', descr => 'select statement of a view', proname => 'pg_get_viewdef', provolatile => 's', proparallel => 'r', prorettype => 'text', proargtypes => 'text', @@ -8580,7 +8577,8 @@ # System-view support functions with pretty-print option { oid => '2504', descr => 'source text of a rule with pretty-print option', proname => 'pg_get_ruledef', provolatile => 's', prorettype => 'text', - proargtypes => 'oid bool', prosrc => 'pg_get_ruledef_ext' }, + proargtypes => 'oid bool', proargnames => '{rule,pretty}', + proargdefaults => '{false}',prosrc => 'pg_get_ruledef' }, { oid => '2505', descr => 'select statement of a view with pretty-print option', proname => 'pg_get_viewdef', provolatile => 's', proparallel => 'r', -- 2.52.0 --m23X5uHFNxthGTU3 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=v5-0002-Handle-pg_get_viewdef-default-args-in-system_func.patch ^ permalink raw reply [nested|flat] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
* [PATCH v9a 17/22] ci: Don't run setup twice @ 2026-06-03 17:38 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 482+ 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] 482+ messages in thread
end of thread, other threads:[~2026-06-03 17:38 UTC | newest] Thread overview: 482+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2025-12-08 23:41 [PATCH v5 1/6] Handle pg_get_ruledef default args in system_functions.sql Mark Wong <markwkm@gmail.com> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de> 2026-06-03 17:38 [PATCH v9a 17/22] ci: Don't run setup twice Andres Freund <andres@anarazel.de>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox