agora inbox for pgsql-hackers@postgresql.org
help / color / mirror / Atom feedQ: How to use indexer api smartly
969+ messages / 3 participants
[nested] [flat]
* Q: How to use indexer api smartly
@ 2014-02-03 14:34 amihay gonen <agonenil@gmail.com>
0 siblings, 0 replies; 969+ messages in thread
From: amihay gonen @ 2014-02-03 14:34 UTC (permalink / raw)
To: pgsql-general <pgsql-general@postgresql.org>; pgsql-hackers; daphna.litvin@gmail.com
My goal is to implement a new index type base on bitmap index algorithm.
I've to main problems :
1. How to get "Target list" - list of columns need to be returned from
query on the index.
I want to implement index only access , today the indexer api get row-id
and then PG retrive the data from the table .
My idea is to return the list of columns directly from the index .
The question is it possible ? how do I know what are the column list
(Assuming the index contain all those columns ).
2. How to implement a query context within the indexer api .
The indexers functions :amcostestimate, ambeginscan and amrescan ) do
not maintain a context.
The idea is the better memory management of index structures ( lock the
memory structure for query life time - until it end)
Thanks ,
Amihay.
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v8a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is
@ 2026-06-03 00:59 Andres Freund <andres@anarazel.de>
0 siblings, 0 replies; 969+ messages in thread
From: Andres Freund @ 2026-06-03 00:59 UTC (permalink / raw)
---
.github/workflows/pg-ci.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index 3bb559ab9f4..af986b351bf 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -780,8 +780,10 @@ jobs:
shell: pwsh
run: |
# meson is not preinstalled on windows-2022. Install via pip
+ echo ::group::pip
python -m pip install --upgrade meson
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
# Install IPC::Run.
@@ -793,10 +795,12 @@ jobs:
# handling). See upstream pg-vm-images commit ff5238afa3 and
# the thread at
# https://postgr.es/m/CAN55FZ06xanSbJdHe-CurjX_qNuBWZDEvS1kAk36L38YCtZXnw%40mail.gmail.com
+ echo ::group::cpan_ipc_run
"o conf recommends_policy 0`no conf commit`nnotest install NJM/IPC-Run-20250809.0.tar.gz" | cpan
if (!$?) { throw 'cmdfail' }
perl -mIPC::Run -e 1
if (!$?) { throw 'cmdfail' }
+ echo ::endgroup::
- name: Setup hosts file
shell: pwsh
@@ -919,8 +923,10 @@ jobs:
# Pin IPC::Run to NJM/IPC-Run-20250809.0; TODDR/IPC-Run-20260322.0
# broke postgres tap tests on Windows (pipe stdio handling).
# See pg-vm-images commit ff5238afa3.
+ echo ::group::cpan_ipc_run
(echo; echo o conf recommends_policy 0; echo notest install NJM/IPC-Run-20250809.0.tar.gz) | cpan
perl -mIPC::Run -e 1
+ echo ::endgroup::
- name: Setup socket directory
shell: cmd
--
2.54.0.380.gc69baaf57b
--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v9a-0014-ci-Add-back-running-check-support.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
* [PATCH v4 2/4] Re-read subscription state after lock in DropSubscription
@ 2026-07-03 11:54 Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
0 siblings, 0 replies; 969+ messages in thread
From: Bertrand Drouvot @ 2026-07-03 11:54 UTC (permalink / raw)
Similarly to what has been done for AlterSubscription() in XXXX, re-read the
subscription tuple after LockSharedObject() in DropSubscription().
A concurrent DROP or ALTER may have committed while we were waiting for the lock.
Without a re-read, DropSubscription would deal with invalid data, which currently
produces a confusing "tuple concurrently updated" elog() from CatalogTupleDelete().
Author: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Reviewed-by: Zhijie Hou <houzj.fnst@fujitsu.com>
Reviewed-by: Amit Kapila <amit.kapila16@gmail.com>
Discussion: https://postgr.es/m/akZUpiDa1UfmzYxL%40bdtpg
---
src/backend/commands/subscriptioncmds.c | 40 ++++++++++++++++++-------
1 file changed, 29 insertions(+), 11 deletions(-)
100.0% src/backend/commands/
diff --git a/src/backend/commands/subscriptioncmds.c b/src/backend/commands/subscriptioncmds.c
index 517d46f47f9..c9e7fbdb47b 100644
--- a/src/backend/commands/subscriptioncmds.c
+++ b/src/backend/commands/subscriptioncmds.c
@@ -2567,25 +2567,15 @@ DropSubscription(DropSubscriptionStmt *stmt, bool isTopLevel)
return;
}
- datum = SysCacheGetAttr(SUBSCRIPTIONOID, tup,
- Anum_pg_subscription_subconninfo, &isnull);
- if (!isnull)
- subconninfo = TextDatumGetCString(datum);
-
form = (Form_pg_subscription) GETSTRUCT(tup);
subid = form->oid;
- subowner = form->subowner;
- subserver = form->subserver;
- subconflictlogrelid = form->subconflictlogrelid;
- must_use_password = !superuser_arg(subowner) && form->subpasswordrequired;
/* must be owner */
if (!object_ownercheck(SubscriptionRelationId, subid, GetUserId()))
aclcheck_error(ACLCHECK_NOT_OWNER, OBJECT_SUBSCRIPTION,
stmt->subname);
- /* DROP hook for the subscription being removed */
- InvokeObjectDropHook(SubscriptionRelationId, subid, 0);
+ ReleaseSysCache(tup);
/*
* Lock the subscription so nobody else can do anything with it (including
@@ -2593,6 +2583,34 @@ DropSubscription(DropSubscriptionStmt *stmt, bool isTopLevel)
*/
LockSharedObject(SubscriptionRelationId, subid, 0, AccessExclusiveLock);
+ /* DROP hook for the subscription being removed */
+ InvokeObjectDropHook(SubscriptionRelationId, subid, 0);
+
+ /*
+ * Re-read the subscription tuple after acquiring the lock. A concurrent
+ * ALTER or DROP may have committed before we acquired the lock.
+ */
+ tup = SearchSysCache1(SUBSCRIPTIONOID, ObjectIdGetDatum(subid));
+
+ if (!HeapTupleIsValid(tup))
+ ereport(ERROR,
+ (errcode(ERRCODE_UNDEFINED_OBJECT),
+ errmsg("subscription \"%s\" does not exist",
+ stmt->subname)));
+
+ form = (Form_pg_subscription) GETSTRUCT(tup);
+ subowner = form->subowner;
+ subserver = form->subserver;
+ subconflictlogrelid = form->subconflictlogrelid;
+ must_use_password = !superuser_arg(subowner) && form->subpasswordrequired;
+
+ datum = SysCacheGetAttr(SUBSCRIPTIONOID, tup,
+ Anum_pg_subscription_subconninfo, &isnull);
+ if (!isnull)
+ subconninfo = TextDatumGetCString(datum);
+ else
+ subconninfo = NULL;
+
/* Get subname */
datum = SysCacheGetAttrNotNull(SUBSCRIPTIONOID, tup,
Anum_pg_subscription_subname);
--
2.34.1
--b+bwjVhifbzgesmw
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
filename="v4-0003-Add-invalidation-based-retry-loop-for-Alter-Drop-.patch"
^ permalink raw reply [nested|flat] 969+ messages in thread
end of thread, other threads:[~2026-07-03 11:54 UTC | newest]
Thread overview: 969+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2014-02-03 14:34 Q: How to use indexer api smartly amihay gonen <agonenil@gmail.com>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v9a 13/22] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-06-03 00:59 [PATCH v8a 13/14] ci: Add groups to windows install, it's pretty hard to read as-is Andres Freund <andres@anarazel.de>
2026-07-03 11:54 [PATCH v4 2/4] Re-read subscription state after lock in DropSubscription Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox