From 5afe2eedb11a8e84e0069bd073978bf59a534cb5 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Sat, 13 Jul 2024 10:14:40 +0200 Subject: [PATCH] Try to fix windows ci --- .github/workflows/config.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 7de5c42b..67537875 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -31,10 +31,19 @@ jobs: shell: cmd strategy: matrix: - version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] - arch: [x64] - ts: [nts, ts] - runs-on: windows-latest + version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] + arch: [x64] + ts: [nts, ts] + os: [windows-2019, windows-2022] + exclude: + - { os: windows-2019, php: "8.3" } + - { os: windows-2019, php: "8.2" } + - { os: windows-2019, php: "8.1" } + - { os: windows-2019, php: "8.0" } + - { os: windows-2022, php: "7.4" } + - { os: windows-2022, php: "7.3" } + - { os: windows-2022, php: "7.2" } + runs-on: ${{matrix.os}} steps: - name: Checkout apcu uses: actions/checkout@v4