From 237b1f311e7f6946d628c5566d25f75bc976cedf Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 16 Aug 2025 03:48:23 +0200 Subject: [PATCH] try more 1 --- .github/workflows/windows.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ad3a754c5d..d5bfac603d 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -43,13 +43,15 @@ env: jobs: build-cache: name: 'Build caches' - runs-on: windows-2022 + runs-on: ${{ matrix.image }} timeout-minutes: 15 defaults: run: shell: msys2 {0} - env: - MAKEFLAGS: -j 5 + strategy: + fail-fast: false + matrix: + image: [windows-2022, windows-11-arm] steps: - name: 'cache perl packages' uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4 @@ -58,7 +60,7 @@ jobs: cache-name: cache-perl-win32-pkgs with: path: C:\perl-win32-pkgs - key: ${{ runner.os }}-build-${{ env.cache-name }} + key: ${{ matrix.image }}-build-${{ env.cache-name }} - name: 'install build prereqs' if: ${{ steps.cache-perl-win32-pkgs.outputs.cache-hit != 'true' }} @@ -986,7 +988,7 @@ jobs: cache-name: cache-perl-win32-pkgs with: path: C:\perl-win32-pkgs - key: ${{ runner.os }}-build-${{ env.cache-name }} + key: ${{ matrix.image }}-build-${{ env.cache-name }} - name: 'install test prereqs' if: ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}