@@ -4,7 +4,7 @@ This project provides actions to build PHP and its extensions on Windows.
4
4
5
5
## Build PHP
6
6
7
- Build PHP for a specific version, architecture and thread safety.
7
+ Build a specific version of PHP, with the required architecture and thread safety.
8
8
9
9
``` yaml
10
10
- name : Build PHP
30
30
matrix:
31
31
arch: [x64, x86]
32
32
ts: [nts, ts]
33
- runs-on: windows-2019
33
+ runs-on: windows-2022
34
34
steps:
35
35
- name: Checkout
36
36
uses: actions/checkout@v4
@@ -43,15 +43,15 @@ jobs:
43
43
ts: ${{ matrix.ts }}
44
44
` ` `
45
45
46
- The above workflow will produce the following the following builds for the PHP version `8.3.2 ` as artifacts.
46
+ The above workflow will produce the following builds for the PHP version `8.4.1 ` as artifacts.
47
47
48
48
- nts-x64, nts-x64-AVX, ts-x64, nts-x86, ts-x86.
49
49
- debug-pack and devel-pack for each the above configurations.
50
50
- test pack
51
51
52
52
# # Build a PHP extension
53
53
54
- Build a PHP extension for a specific version .
54
+ Build a specific version of a PHP extension .
55
55
56
56
` ` ` yaml
57
57
- name: Build the extension
@@ -133,10 +133,10 @@ It will also check if a GitHub hosted Windows runner is available with the requi
133
133
| 7.2 | 2017 (vc15) | windows-2019, github-hosted |
134
134
| 7.3 | 2017 (vc15) | windows-2019, github-hosted |
135
135
| 7.4 | 2017 (vc15) | windows-2019, github-hosted |
136
- | 8.0 | 2019 (vs16) | windows-2019 , github-hosted |
137
- | 8.1 | 2019 (vs16) | windows-2019 , github-hosted |
138
- | 8.2 | 2019 (vs16) | windows-2019 , github-hosted |
139
- | 8.3 | 2019 (vs16) | windows-2019 , github-hosted |
136
+ | 8.0 | 2019 (vs16) | windows-2022 , github-hosted |
137
+ | 8.1 | 2019 (vs16) | windows-2022 , github-hosted |
138
+ | 8.2 | 2019 (vs16) | windows-2022 , github-hosted |
139
+ | 8.3 | 2019 (vs16) | windows-2022 , github-hosted |
140
140
| 8.4 | 2022 (vs17) | windows-2022, github-hosted |
141
141
142
142
# # Release
0 commit comments