From c4e776cafa22533fe8a6113a39f6a9f624e8c467 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 19 Apr 2025 10:31:51 +0200 Subject: [PATCH] GHA/windows: enable MSYS2 `diffutils` on ARM64 https://packages.msys2.org/packages/mingw-w64-clang-aarch64-diffutils Thanks-to: Christoph Reiter Ref: https://github.com/curl/curl/pull/17067#issuecomment-2816599349 Closes #17103 --- .github/workflows/windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 32afacbcc3..5a738fd5a8 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -227,10 +227,11 @@ jobs: if: ${{ matrix.sys != 'msys' }} with: msystem: ${{ matrix.sys }} + update: ${{ matrix.sys == 'clangarm64' }} # delete this line on next msys2/setup-msys2 bump install: >- mingw-w64-${{ matrix.env }}-cc mingw-w64-${{ matrix.env }}-${{ matrix.build }} ${{ matrix.build == 'autotools' && 'make' || '' }} - ${{ matrix.sys != 'clangarm64' && format('mingw-w64-{0}-diffutils', matrix.env) || '' }} + mingw-w64-${{ matrix.env }}-diffutils mingw-w64-${{ matrix.env }}-libpsl mingw-w64-${{ matrix.env }}-c-ares ${{ matrix.install }} -- 2.47.2