Skip to content

Commit c32d6f8

Browse files
committed
Add windows-2022 to test matrix
Also skip running php-8.4 on windows-2019 because of possible problems
1 parent 381180a commit c32d6f8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/windows-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@ jobs:
2020
version: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
2121
arch: [x64, x86]
2222
ts: [ts, nts]
23-
experimental: [false]
23+
os: [windows-2019, windows-2022]
24+
exclude:
25+
- { os: windows-2019, version: "8.4" }
26+
- { os: windows-2022, version: "7.4" }
2427

25-
runs-on: windows-2019
28+
runs-on: ${{matrix.os}}
2629
steps:
2730
- name: Checkout the code
2831
uses: actions/checkout@v2
@@ -35,6 +38,7 @@ jobs:
3538
arch: ${{matrix.arch}}
3639
ts: ${{matrix.ts}}
3740
deps: 'libxml2,libcurl,libiconv,libssh2,openssl,nghttp2'
41+
cache: true
3842

3943
- name: Enable Developer Command Prompt
4044
uses: ilammy/msvc-dev-cmd@v1

0 commit comments

Comments
 (0)