From 99613cb720b65036237d44b52f753b51f75c2797 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 4 Jun 2026 16:27:58 +0200 Subject: [PATCH] ci: build-windows action slimming (#3858) * ci : remove base-devel and git from msys2 job This commit removes the above packages as they might not be required and could help reduce the github cache size. * ci : try reducing the installs to only the compilers --- .github/workflows/build-windows.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 9fd910ac0..156a57f74 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -38,8 +38,8 @@ jobs: fail-fast: false matrix: include: - - { sys: UCRT64, env: ucrt-x86_64, build: Release } - - { sys: CLANG64, env: clang-x86_64, build: Release } + - { sys: UCRT64, env: ucrt-x86_64, compiler: gcc, build: Release } + - { sys: CLANG64, env: clang-x86_64, compiler: clang, build: Release } steps: - name: Clone @@ -51,9 +51,7 @@ jobs: update: true msystem: ${{matrix.sys}} install: >- - base-devel - git - mingw-w64-${{matrix.env}}-toolchain + mingw-w64-${{matrix.env}}-${{matrix.compiler}} mingw-w64-${{matrix.env}}-cmake mingw-w64-${{matrix.env}}-SDL2 mingw-w64-${{matrix.env}}-openblas