forked from easysoft/phpmicro
-
Notifications
You must be signed in to change notification settings - Fork 9
340 lines (319 loc) · 9.72 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
name: tests
on:
push:
workflow_dispatch:
jobs:
fetchversion:
name: Fetch latest PHP version
runs-on: "ubuntu-latest"
outputs:
info: ${{ steps.fetch.outputs.info }}
steps:
- name: Fetch version info
id: fetch
run: |
printf "info=" >> $GITHUB_OUTPUT
jq -rcs '
# default targets
[{
"name": "master",
"rev":"master",
"patch":"84",
}] +
[.[] | {
# ver is like 8.0.0
"ver" : . | keys | first
} | {
"name": .ver,
"rev": ("php-"+.ver),
"patch": {
# mapping maj.min to patches used
"8.4": "84",
"8.3": "83",
"8.2": "82",
"8.1": "81",
"8.0": "80",
}[.ver | sub("(?<v>\\d+\\.\\d+)\\..+"; .v)],
}]' \
<(curl -sfSL 'https://www.php.net/releases/?json&max=1&version=8.0') \
<(curl -sfSL 'https://www.php.net/releases/?json&max=1&version=8.1') \
<(curl -sfSL 'https://www.php.net/releases/?json&max=1&version=8.2') \
<(curl -sfSL 'https://www.php.net/releases/?json&max=1&version=8.3') >> $GITHUB_OUTPUT
wintests:
name: Windows tests for PHP ${{ matrix.name }}
runs-on: "windows-latest"
needs:
- fetchversion
strategy:
matrix:
include: ${{ fromJSON(needs.fetchversion.outputs.info) }}
max-parallel: 3
fail-fast: false
steps:
- name: Disable autocrlf
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout PHP
uses: actions/checkout@v4
with:
repository: php/php-src
path: php-src
ref: ${{ matrix.rev }}
- name: Checkout micro
uses: actions/checkout@v4
with:
path: php-src/sapi/micro
- name: Checkout php-sdk-binary-tools
uses: actions/checkout@v4
with:
repository: php/php-sdk-binary-tools
path: php-sdk-binary-tools
ref: master
- name: Apply patches
shell: powershell
working-directory: php-src
run: |
$patchVer = "${{ matrix.patch }}"
$series = '84', '83', '82', '81', '80'
$patches = 'cli_checks', 'vcruntime140', 'win32', 'zend_stream'
foreach ( $patch in $patches )
{
$path = "sapi/micro/patches/${patch}.patch"
if (Test-Path $path -PathType Leaf) {
Write-Host "Applying $path"
Get-Content $path | patch -p1
continue
}
foreach ( $ver in $series ) {
if ( $patchVer -lt $ver ) {
continue
}
$path = "sapi/micro/patches/${patch}_$ver.patch"
if (Test-Path $path -PathType Leaf) {
Write-Host "Applying $path"
Get-Content $path | patch -p1
break
}
}
}
- name: Build micro SAPI for PHP
shell: cmd /c ..\php-sdk-binary-tools\phpsdk-vs17-x64.bat -t {0}
working-directory: php-src
run: |
buildconf && ^
configure ^
--disable-all ^
--enable-micro ^
--disable-zts ^
--enable-ctype ^
--enable-filter ^
--enable-mbstring ^
--enable-session ^
--enable-tokenizer ^
--enable-phar && ^
nmake micro
- name: Upload built micro as artifact
uses: actions/upload-artifact@v4
with:
name: micro_windows_${{ matrix.name }}
path: php-src/x64/Release/micro.sfx
if-no-files-found: error
- name: Test micro SAPI for PHP
shell: cmd /c ..\php-sdk-binary-tools\phpsdk-vs17-x64.bat -t {0}
working-directory: php-src
run: |
nmake micro_test TESTS="--show-diff --color sapi/micro/tests"
linuxtests:
name: Linux tests for PHP ${{ matrix.name }}
runs-on: "ubuntu-latest"
needs:
- fetchversion
strategy:
matrix:
include: ${{ fromJSON(needs.fetchversion.outputs.info) }}
max-parallel: 3
fail-fast: false
steps:
- name: Checkout PHP
uses: actions/checkout@v4
with:
repository: php/php-src
path: php-src
ref: ${{ matrix.rev }}
- name: Checkout micro
uses: actions/checkout@v4
with:
path: php-src/sapi/micro
- name: Apply patches
shell: bash
working-directory: php-src
run: |
patchVer="${{ matrix.patch }}"
for patch in 'cli_checks' 'disable_huge_page'
do
path="sapi/micro/patches/${patch}.patch"
if [ -f $path ]
then
echo "Applying $path"
patch -p1 < $path
continue
fi
for ver in '84' '83' '82' '81' '80'
do
if [ $patchVer -lt $ver ]
then
continue
fi
path="sapi/micro/patches/${patch}_${ver}.patch"
if [ -f $path ]
then
echo "Applying $path"
patch -p1 < $path
break
fi
done
done
- name: Install deps
run: |
sudo apt-get update &&
sudo apt-get install -yyq re2c
- name: Build micro SAPI for PHP
working-directory: php-src
run: |
./buildconf --force &&
./configure \
--disable-all \
--disable-cgi \
--disable-cli \
--enable-micro \
--disable-phpdbg \
--without-pear \
--disable-shared \
--enable-static \
--disable-dom \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--enable-ctype \
--enable-filter \
--enable-mbstring \
--enable-session \
--enable-sockets \
--enable-tokenizer \
--enable-phar \
--enable-posix \
--enable-pcntl \
--disable-mbregex &&
make -j `nproc` \
EXTRA_CFLAGS='-Os' \
EXTRA_LDFLAGS_PROGRAM=-lpthread &&
elfedit --output-osabi linux sapi/micro/micro.sfx
- name: Upload built micro as artifact
uses: actions/upload-artifact@v4
with:
name: micro_linux_${{ matrix.name }}
path: php-src/sapi/micro/micro.sfx
if-no-files-found: error
- name: Test micro SAPI for PHP
working-directory: php-src
run: |
make micro_test TESTS="--show-diff --color sapi/micro/tests"
macostests:
name: macOS tests for PHP ${{ matrix.name }}
#runs-on: "macos-latest"
# macos-14-arm64 now cannot build php without install many things
# we cannot select macos-14 because macos-14 will select arm64
runs-on: "macos-13"
needs:
- fetchversion
strategy:
matrix:
include: ${{ fromJSON(needs.fetchversion.outputs.info) }}
max-parallel: 3
fail-fast: false
steps:
- name: Checkout PHP
uses: actions/checkout@v4
with:
repository: php/php-src
path: php-src
ref: ${{ matrix.rev }}
- name: Checkout micro
uses: actions/checkout@v4
with:
path: php-src/sapi/micro
- name: Apply patches
shell: bash
working-directory: php-src
run: |
patchVer="${{ matrix.patch }}"
for patch in 'cli_checks' 'disable_huge_page'
do
path="sapi/micro/patches/${patch}.patch"
if [ -f $path ]
then
echo "Applying $path"
patch -p1 < $path
continue
fi
for ver in '84' '83' '82' '81' '80'
do
if [ $patchVer -lt $ver ]
then
continue
fi
path="sapi/micro/patches/${patch}_${ver}.patch"
if [ -f $path ]
then
echo "Applying $path"
patch -p1 < $path
break
fi
done
done
- name: Install deps
run: |
brew install bison re2c
- name: Build micro SAPI for PHP
working-directory: php-src
run: |
export PATH="/usr/local/opt/bison/bin:$PATH"
./buildconf --force &&
./configure \
--disable-all \
--disable-cgi \
--disable-cli \
--enable-micro \
--disable-phpdbg \
--without-pear \
--disable-shared \
--enable-static \
--disable-dom \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
--enable-ctype \
--enable-filter \
--enable-mbstring \
--enable-session \
--enable-sockets \
--enable-tokenizer \
--enable-phar \
--enable-posix \
--enable-pcntl \
--disable-mbregex &&
make -j `sysctl -n hw.logicalcpu` \
EXTRA_CFLAGS='-Os'
- name: Upload built micro as artifact
uses: actions/upload-artifact@v4
with:
name: micro_macos_${{ matrix.name }}
path: php-src/sapi/micro/micro.sfx
if-no-files-found: error
- name: Test micro SAPI for PHP
working-directory: php-src
run: |
make micro_test TESTS="--show-diff --color sapi/micro/tests"