@@ -53,13 +53,15 @@ jobs:
53
53
restore-keys : musl-cross-make-
54
54
55
55
- name : Checkout musl-cross-make
56
+ if : steps.compiler-cache.outputs.cache-hit != 'true'
56
57
uses : actions/checkout@v4
57
58
with :
58
59
repository : pmmp/musl-cross-make
59
60
path : musl-cross-make
60
61
ref : ${{ env.MUSL_CROSS_MAKE_VERSION }}
61
62
62
63
- name : Build compiler
64
+ if : steps.compiler-cache.outputs.cache-hit != 'true'
63
65
working-directory : musl-cross-make
64
66
run : |
65
67
echo "TARGET = aarch64-linux-musl" > config.mak
@@ -80,15 +82,15 @@ jobs:
80
82
- name : Create tarball
81
83
run : |
82
84
tar -czf ./PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}.tar.gz bin
83
- tar -czf ./PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
85
+ tar -czf ./Z- PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
84
86
85
87
- name : Upload artifacts
86
88
uses : actions/upload-artifact@v4
87
89
if : always()
88
90
with :
89
91
name : PHP-${{ inputs.php-version-base }}-Android-PM${{ inputs.pm-version-major }}
90
92
path : |
91
- ./PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}*.tar.gz
93
+ ./* PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}*.tar.gz
92
94
install.log
93
95
compile.sh
94
96
if-no-files-found : error
@@ -136,15 +138,15 @@ jobs:
136
138
- name : Create tarball
137
139
run : |
138
140
tar -czf ./PHP-${{ inputs.php-version-base }}-Linux-x86_64-PM${{ inputs.pm-version-major }}.tar.gz bin
139
- tar -czf ./PHP-${{ inputs.php-version-base }}-Linux-x86_64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
141
+ tar -czf ./Z- PHP-${{ inputs.php-version-base }}-Linux-x86_64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
140
142
141
143
- name : Upload artifacts
142
144
uses : actions/upload-artifact@v4
143
145
if : always()
144
146
with :
145
147
name : PHP-${{ inputs.php-version-base }}-Linux-PM${{ inputs.pm-version-major }}
146
148
path : |
147
- ./PHP-${{ inputs.php-version-base }}-Linux-x86_64-PM${{ inputs.pm-version-major }}*.tar.gz
149
+ ./* PHP-${{ inputs.php-version-base }}-Linux-x86_64-PM${{ inputs.pm-version-major }}*.tar.gz
148
150
install.log
149
151
compile.sh
150
152
if-no-files-found : error
@@ -202,15 +204,15 @@ jobs:
202
204
- name : Create tarball
203
205
run : |
204
206
tar -czf ./PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-PM${{ inputs.pm-version-major }}.tar.gz bin
205
- tar -czf ./PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
207
+ tar -czf ./Z- PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
206
208
207
209
- name : Upload artifacts
208
210
uses : actions/upload-artifact@v4
209
211
if : always()
210
212
with :
211
213
name : PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-PM${{ inputs.pm-version-major }}
212
214
path : |
213
- ./PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name}}-PM${{ inputs.pm-version-major }}*.tar.gz
215
+ ./* PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name}}-PM${{ inputs.pm-version-major }}*.tar.gz
214
216
install.log
215
217
compile.sh
216
218
if-no-files-found : error
@@ -254,7 +256,7 @@ jobs:
254
256
run : |
255
257
mkdir temp
256
258
Compress-Archive -Path .\bin -DestinationPath "PHP-${{ inputs.php-version-base }}-Windows-x64-PM${{ inputs.pm-version-major }}.zip"
257
- move php-debug-pack-*.zip temp/PHP-${{ inputs.php-version-base }}-Windows-x64-PM${{ inputs.pm-version-major }}-debugging-symbols.zip
259
+ move php-debug-pack-*.zip temp/Z- PHP-${{ inputs.php-version-base }}-Windows-x64-PM${{ inputs.pm-version-major }}-debugging-symbols.zip
258
260
move temp\*.zip .
259
261
260
262
- name : Upload artifacts
@@ -263,7 +265,7 @@ jobs:
263
265
with :
264
266
name : PHP-${{ inputs.php-version-base }}-Windows-PM${{ inputs.pm-version-major }}
265
267
path : |
266
- PHP-${{ inputs.php-version-base }}-Windows-x64-PM${{ inputs.pm-version-major }}*.zip
268
+ * PHP-${{ inputs.php-version-base }}-Windows-x64-PM${{ inputs.pm-version-major }}*.zip
267
269
compile.log
268
270
windows-compile-vs.bat
269
271
if-no-files-found : error
@@ -290,7 +292,18 @@ jobs:
290
292
uses : actions/download-artifact@v4
291
293
with :
292
294
path : ${{ github.workspace }}
293
- pattern : " PHP-${{ inputs.php-version-base }}-*-PM${{ inputs.pm-version-major }}"
295
+ pattern : " *PHP-${{ inputs.php-version-base }}-*-PM${{ inputs.pm-version-major }}"
296
+
297
+ - name : Download .gdbinit for this PHP version
298
+ run : |
299
+ curl -L https://raw.githubusercontent.com/php/php-src/refs/heads/PHP-${{ inputs.php-version-base }}/.gdbinit -o Z-PHP-${{ inputs.php-version-base }}.gdbinit
300
+
301
+ - name : Upload .gdbinit artifact
302
+ uses : actions/upload-artifact@v4
303
+ with :
304
+ name : PHP-${{ inputs.php-version-base }}.gdbinit
305
+ path : |
306
+ ${{ github.workspace }}/*.gdbinit
294
307
295
308
- name : Generate release notes
296
309
run : |
@@ -322,8 +335,9 @@ jobs:
322
335
if : ${{ inputs.special-release != 'none' }}
323
336
with :
324
337
artifacts : |
325
- ${{ github.workspace }}/PHP-*-PM*/*.tar.gz
326
- ${{ github.workspace }}/PHP-*-Windows-PM*/*.zip
338
+ ${{ github.workspace }}/*PHP-*-PM*/*.tar.gz
339
+ ${{ github.workspace }}/*PHP-*-Windows-PM*/*.zip
340
+ ${{ github.workspace }}/*.gdbinit
327
341
name : PM ${{ inputs.pm-version-major }}.x (${{ steps.date.outputs.DATE }}) - Recommended
328
342
tag : pm${{ inputs.pm-version-major }}-latest
329
343
commit : ${{ github.sha }}
@@ -337,8 +351,9 @@ jobs:
337
351
338
352
with :
339
353
artifacts : |
340
- ${{ github.workspace }}/PHP-*-PM*/*.tar.gz
341
- ${{ github.workspace }}/PHP-*-Windows-PM*/*.zip
354
+ ${{ github.workspace }}/*PHP-*-PM*/*.tar.gz
355
+ ${{ github.workspace }}/*PHP-*-Windows-PM*/*.zip
356
+ ${{ github.workspace }}/*.gdbinit
342
357
name : PM ${{ inputs.pm-version-major }}.x (${{ steps.date.outputs.DATE }}) - PHP ${{ inputs.php-version-base }}
343
358
tag : pm${{ inputs.pm-version-major }}-php-${{ inputs.php-version-base }}-latest
344
359
commit : ${{ github.sha }}
0 commit comments