agora inbox for pgsql-hackers@postgresql.org  
help / color / mirror / Atom feed
[PATCH v9a 14/22] ci: Add back running check support
909+ messages / 1 participants
[nested] [flat]

* [PATCH v9a 14/22] ci: Add back running check support
@ 2026-06-03 00:30 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 00:30 UTC (permalink / raw)

---
 .github/workflows/pg-ci.yml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index af986b351bf..1be402b44ce 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -479,6 +479,36 @@ jobs:
           LANG: C
         run: *meson_test_world_cmd
 
+      # Test running against existing PG instance.
+      #
+      # linux-meson-32 chosen because it's currently comparatively fast
+      - name: Test running
+        shell: *su_postgres_shell
+        run: |
+          ulimit -c unlimited
+
+          # Ensure install exists, in case somebody is debugging a failing
+          # test within this an reorders this before "Test world"
+          echo ::group::test_setup
+          meson test ${{env.MTEST_ARGS}} --suite setup --logbase setup
+          echo ::endgroup::
+
+          # Make libraries discoverable (the x86_64 reference is a meson
+          # oddity)
+          export LD_LIBRARY_PATH="$(pwd)/build/tmp_install/usr/local/pgsql/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH"
+
+          build/tmp_install/usr/local/pgsql/bin/initdb -N build/runningcheck --no-instructions -A trust
+          echo "include '$(pwd)/src/tools/ci/pg_ci_base.conf'" >> build/runningcheck/postgresql.conf
+
+          # Log into a place that will be archived in case of failure
+          mkdir -p build/testrun
+          build/tmp_install/usr/local/pgsql/bin/pg_ctl -c -o '-c fsync=off' -D build/runningcheck -l build/testrun/runningcheck.log start
+
+          # Run the tests supporting running against an already running
+          meson test ${{env.MTEST_ARGS}} --num-processes ${{env.TEST_JOBS}} --setup running
+
+          build/tmp_install/usr/local/pgsql/bin/pg_ctl -D build/runningcheck stop
+
       - *linux_collect_cores
       - *upload_logs_step
 
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0015-ci-Move-more-coverage-from-previously-FreeBSD-el.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--vphnza2cz5zw5t4a
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v8a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread

* [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps
@ 2026-06-03 06:21 Andres Freund <andres@anarazel.de>
  0 siblings, 0 replies; 909+ messages in thread

From: Andres Freund @ 2026-06-03 06:21 UTC (permalink / raw)

--asdeps can sometimes lead to fewer packages being installed.
---
 .github/workflows/pg-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml
index e35170956e8..9611686af90 100644
--- a/.github/workflows/pg-ci.yml
+++ b/.github/workflows/pg-ci.yml
@@ -892,8 +892,8 @@ jobs:
           # ${MINGW_PACKAGE_PREFIX} is an environment variable used in the
           # MSYS2. It dynamically expands to the correct prefix for the active
           # shell environment.
-          pacman -S --noconfirm --needed \
-            git bison flex make diffutils \
+          pacman -S --noconfirm --needed  --asdeps \
+            git bison flex diffutils \
             ${MINGW_PACKAGE_PREFIX}-ccache \
             ${MINGW_PACKAGE_PREFIX}-gcc \
             ${MINGW_PACKAGE_PREFIX}-icu \
-- 
2.54.0.380.gc69baaf57b


--lyfxwjjve3vodszg
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment;
	filename="v9a-0009-ci-mingw-Don-t-rely-on-zstd-implicitly-being-ins.patch"



^ permalink  raw  reply  [nested|flat] 909+ messages in thread


end of thread, other threads:[~2026-06-03 06:21 UTC | newest]

Thread overview: 909+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2026-06-03 00:30 [PATCH v9a 14/22] ci: Add back running check support Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v8a 08/14] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>
2026-06-03 06:21 [PATCH v9a 08/22] ci: mingw: Don't install make, use --asdeps Andres Freund <andres@anarazel.de>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox