From a55dfa5e3564c16d26ea63092bddefbb28777815 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 1 Jul 2026 17:14:12 +0200 Subject: [PATCH] GHA/windows: exclude `diffutils` for 32-bit builds It's not longer offered by MSYS2. Bug: https://github.com/curl/curl/pull/22239#issuecomment-4856772868 Ref: https://github.com/msys2/MINGW-packages/commit/b13c6d3af1dde801a7d2e16e6daa7e4b5a21cc36 Ref: c4e776cafa22533fe8a6113a39f6a9f624e8c467 #17103 Closes #22242 --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4bf2ff5c4a..0e593d043b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -344,7 +344,7 @@ jobs: install: >- mingw-w64-${{ matrix.env }}-cc mingw-w64-${{ matrix.env }}-${{ matrix.build }} ${{ matrix.build == 'autotools' && 'make' || '' }} - mingw-w64-${{ matrix.env }}-diffutils + ${{ matrix.sys != 'mingw32' && format('mingw-w64-{0}-diffutils', matrix.env) || '' }} mingw-w64-${{ matrix.env }}-libpsl ${{ matrix.install }}