We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5572e61 commit 6192de8Copy full SHA for 6192de8
2 files changed
.github/workflows/linux.yaml
@@ -9,6 +9,8 @@ jobs:
9
strategy:
10
matrix:
11
php:
12
+ - '8.4-alpine'
13
+ - '8.4-zts-alpine'
14
- '8.3-alpine'
15
- '8.3-zts-alpine'
16
- '8.2-alpine'
.github/workflows/windows.yaml
@@ -11,6 +11,7 @@ jobs:
+ - '8.4'
- '8.3'
- '8.2'
17
- '8.1'
@@ -20,15 +21,27 @@ jobs:
20
21
ts:
22
- 'nts'
23
- 'ts'
24
+ vc:
25
+ - vs16
26
+ - vs17
27
library:
28
- ''
29
- 'vcpkg'
30
+ exclude:
31
+ - php: '8.4'
32
+ vc: vs16
33
+ - php: '8.3'
34
+ vc: vs17
35
+ - php: '8.2'
36
37
+ - php: '8.1'
38
39
- runs-on: windows-2019
40
+ runs-on: ${{ matrix.vc == 'vs17' && 'windows-2022' || 'windows-2019' }}
41
42
env:
43
PHP_VER: ${{ matrix.php }}
- VC: vs16
44
+ VC: ${{ matrix.vc }}
45
ARCH: ${{ matrix.arch }}
46
TS: ${{ matrix.ts }}
47
0 commit comments