-
Notifications
You must be signed in to change notification settings - Fork 29
594 lines (542 loc) · 19.8 KB
/
linux-new.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
name: Linux build
on:
workflow_dispatch:
inputs:
flavors:
description: "flavors, comma splited, empty for 'min,lite,max-swow', available: min, lite, max[-eventengine, like swow/swoole/libev], custom"
required: false
default: ""
archs:
description: "archs, comma splited, empty for all, available: x86_64, aarch64"
required: false
default: ""
sapis:
description: "SAPIs, comma splited, empty for all, available: micro, micro-cli, cli"
required: false
default: ""
libcs:
description: "libcs, comma splited, empty for all, available: musl, glibc"
required: false
default: ""
phpVers:
description: "PHP versions, empty for all, available: 8.1, 8.2, 8.3"
required: false
default: ""
customExtensions:
description: "custom extensions, used for custom flavor build"
required: false
default: ""
customLibraries:
description: "custom libraries, used for custom flavor build"
required: false
default: ""
uploadRelease:
description: "upload binaries to releases, otherwise only upload via artifact"
required: false
type: boolean
default: false
workflow_call:
inputs:
flavors:
description: "flavors, comma splited, empty for 'min,lite,max-swow', available: min, lite, max[-eventengine, like swow/swoole/libev], custom"
required: false
type: string
default: ""
archs:
description: "archs, comma splited, empty for all, available: x86_64, aarch64"
required: false
type: string
default: ""
sapis:
description: "SAPIs, comma splited, empty for all, available: micro, micro-cli, cli"
required: false
type: string
default: ""
libcs:
description: "libcs, comma splited, empty for all, available: musl, glibc"
required: false
type: string
default: ""
phpVers:
description: "PHP versions, empty for all, available: 8.1, 8.2, 8.3"
required: false
type: string
default: ""
customExtensions:
description: "custom extensions, used for custom flavor build"
required: false
type: string
default: ""
customLibraries:
description: "custom libraries, used for custom flavor build"
required: false
type: string
default: ""
uploadRelease:
description: "upload binaries to releases, otherwise only upload via artifact"
required: false
type: boolean
default: false
workflowRepo:
description: "repository of workflow to call"
required: true
type: string
workflowRev:
description: "revision of workflow to call"
required: true
type: string
jobs:
gen-jobs:
name: Generate jobs
runs-on: ubuntu-latest
outputs:
jobs: ${{ steps.gen-jobs.outputs.jobs }}
permissions:
contents: write
steps:
- name: Generate jobs
id: gen-jobs
shell: php {0}
run: |
<?php
set_error_handler(function ($severity, $message, $file, $line) {
throw new ErrorException($message, 0, $severity, $file, $line);
});
if (${{ inputs.uploadRelease }}) {
# create github release
echo "create release\n";
$tagName = date('Ymd') . '-linux-${{ github.run_id }}';
$context = stream_context_create([
'http' => [
'method' => 'POST',
'header' => implode("\r\n", [
'Content-Type: application/json',
'Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}',
'User-Agent: file_get_contents/0',
]),
'content' => json_encode([
'tag_name' => $tagName,
'name' => $tagName,
'body' => "automatic release\n\nworkflow run: [${{ github.run_id }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})",
#'draft' => true,
#'prerelease' => true,
]),
],
]);
file_get_contents('https://api.github.com/repos/${{ github.repository }}/releases', context: $context);
}
function arg2arr(string $arg): array
{
return array_filter(array_map("trim", explode(',', $arg)));
}
$flavors = arg2arr(<<<'ARG'
${{ inputs.flavors }}
ARG);
$archs = arg2arr(<<<'ARG'
${{ inputs.archs }}
ARG);
$sapis = arg2arr(<<<'ARG'
${{ inputs.sapis }}
ARG);
$libcs = arg2arr(<<<'ARG'
${{ inputs.libcs }}
ARG);
$phpVers = arg2arr(<<<'ARG'
${{ inputs.phpVers }}
ARG);
if (!$flavors) {
$flavors = ['min', 'lite', 'max-swow'];
}
if (!$archs) {
$archs = ['x86_64', 'aarch64'];
}
if (!$sapis) {
$sapis = ['micro', 'micro-cli', 'cli'];
}
if (!$libcs) {
$libcs = ['musl', 'glibc'];
}
if (!$phpVers) {
$phpVers = ['8.1', '8.2', '8.3'];
}
$customLibraries = <<<'ARG'
${{ inputs.customLibraries }}
ARG;
$customExtensions = <<<'ARG'
${{ inputs.customExtensions }}
ARG;
$customLibraries = trim($customLibraries);
$customExtensions = trim($customExtensions);
foreach ($archs as $arch) {
foreach ($libcs as $libc) {
foreach ($phpVers as $phpVer) {
$imageTag = "linux-${libc}-${arch}";
$job = [
'flavors' => $flavors,
'customLibraries' => $customLibraries,
'customExtensions' => $customExtensions,
'imageTag' => $imageTag,
'arch' => $arch,
'sapis' => $sapis,
'libc' => $libc,
'phpVer' => $phpVer,
'volumes' => [],
];
if ($imageTag === "linux-glibc-x86_64") {
$job['volumes'] = [
'/node20217:/node20217:rw,rshared',
'/node20217:/__e/node20:ro,rshared',
];
}
$jobs[] = $job;
}
}
}
if (!$jobs) {
echo "no jobs generated\n";
exit(1);
}
$json = json_encode($jobs);
file_put_contents(getenv('GITHUB_OUTPUT'), "jobs=$json");
# $jsonDebug = <<<'JSON'
# [{
# "flavors": [
# "min",
# "lite",
# "max"
# ],
# "customLibraries": "",
# "customExtensions": "",
# "imageTag": "linux-glibc-x86_64-src",
# "arch": "x86_64",
# "sapis": [
# "micro",
# "micro-cli",
# "cli"
# ],
# "libc": "musl",
# "phpVer": "8.2"
# }]
# JSON;
# $json = json_encode(json_decode($jsonDebug, true));
# file_put_contents(getenv('GITHUB_OUTPUT'), "jobs=$json");
build:
name: ${{ matrix.phpVer }} ${{ matrix.libc }} ${{ matrix.arch }} ${{ toJson(matrix.flavors) }}
runs-on: ubuntu-latest
container:
image: 'ghcr.io/dixyes/prepared-lwmbs:${{ matrix.imageTag }}'
volumes: ${{ matrix.volumes }}
needs:
- gen-jobs
permissions:
contents: write
strategy:
max-parallel: 6
fail-fast: false
matrix:
include: ${{ fromJson(needs.gen-jobs.outputs.jobs) }}
steps:
# https://github.com/actions/runner/issues/2906
- name: Setup node 20 for centos:7
if: matrix.imageTag == 'linux-glibc-x86_64'
shell: bash
run: |
cp -r /opt/nodejs/* /node20217
- name: Restore sources
uses: actions/cache/restore@v4
id: cache-restore
with:
path: |
/downloads
#/src
/versionFile
key: ${{ runner.os }}-build-v1-${{ matrix.phpVer }}-${{ hashFiles('/versionFile') }}
restore-keys: |
${{ runner.os }}-build-v1-${{ matrix.phpVer }}-
- name: Prepare lwmbs and sources
id: prepare
run: |
export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
# prepare lwmbs
cd /lwmbs
git remote set-url origin "https://github.com/${{ inputs.workflowRepo || github.repository }}"
git fetch origin ${{ inputs.workflowRev || github.sha }}
git checkout FETCH_HEAD
cd /
php /lwmbs/fetch_source.php \
"" \
"" \
"--phpVer=${{ matrix.phpVer }}" \
"--versionFile=/versionFile"
matched_key="${{ steps.cache-restore.outputs.cache-matched-key }}"
src_hash="$(sha256sum /versionFile | head -c 64)"
if [ "$matched_key" != "${matched_key##*${src_hash}}" ]
then
echo "srcHash=" >> "$GITHUB_OUTPUT"
else
echo "srcHash=${src_hash}" >> "$GITHUB_OUTPUT"
fi
- name: Save sources
uses: actions/cache/save@v4
if: steps.prepare.outputs.srcHash != ''
with:
path: |
/downloads
#/src
/versionFile
key: ${{ runner.os }}-build-v1-${{ matrix.phpVer }}-${{ steps.prepare.outputs.srcHash }}
- name: Make build commands
shell: php {0}
run: |
<?php
$matrix = <<<'EOF'
${{ toJson(matrix) }}
EOF;
$matrix = json_decode($matrix, true);
$customLibraries = $matrix['customLibraries'];
$customExtensions = $matrix['customExtensions'];
$commands = [];
$output = fopen('/tmp/build.sh', 'w');
$writesh = function (...$args) use ($output) {
fwrite($output, sprintf(...$args));
fwrite(STDOUT, sprintf(...$args));
};
$writesh(<<<BASH
#!/bin/sh
#set -x
# NOTE: to build these binaries on your machine, just use dixyes/prepared-lwmbs:{$matrix['imageTag']} image
# cached in github actions
# echo "::group::Prepare source"
# # prepare source for specified php version
# # you may select only libraries and extensions you will use
# php /lwmbs/fetch_source.php \
# "" \
# "" \
# --phpVer={$matrix['phpVer']} \
# --versionFile=/versionFile
# ret="\$?"
# echo "::endgroup::"
# if [ ! "\$ret" = "0" ]
# then
# echo "::error::fetch source failed"
# exit 1
# fi
echo "::group::Show versions"
cat /versionFile
sha256sum /versionFile
echo "::endgroup::"
BASH);
$maxLibraries = [
// compression
'zlib','zstd','bzip2','xz','brotli','libzip',
// curl and its deps
'nghttp2','libssh2','curl',
'libffi',
'openssl',
'onig',
'libyaml',
'libxml2',
// gd deps
'libpng', 'libjpegturbo', 'freetype', 'libwebp',
];
$maxLibraries = implode(',', $maxLibraries);
$maxExtensions = [
'iconv',
// xml things
'dom','xml','simplexml','xmlwriter','xmlreader',
'opcache',
'bcmath',
'phar','zip','zlib','bz2','zstd',
'mysqlnd','mysqli','pdo','pdo_mysql',
'mbstring','mbregex',
'session',
'ctype',
'fileinfo',
'filter',
'tokenizer',
'curl',
'ffi',
'redis',
'sockets',
'openssl',
'yaml',
'posix','pcntl',
'sysvshm','sysvsem','sysvmsg',
'gd',
];
$maxExtensions = implode(',', $maxExtensions);
foreach ($matrix['flavors'] as $flavor) {
$libraries = match ($flavor) {
'min' => 'libffi',
'lite' => 'zstd,zlib,libffi,libzip,bzip2,xz,onig',
'max', 'max-swow' => $maxLibraries,
'max-libev' => "{$maxLibraries},libev",
'max-swoole' => "{$maxLibraries},libstdc++",
'custom' => $customLibraries,
};
$extensions = match ($flavor) {
'min' => 'posix,pcntl,ffi,filter,tokenizer,ctype',
'lite' => 'opcache,posix,pcntl,ffi,filter,tokenizer,ctype,iconv,mbstring,mbregex,sockets,zip,zstd,zlib,bz2,phar,fileinfo',
'max' => $maxExtensions,
'max-swow' => "{$maxExtensions},swow",
'max-swoole' => "{$maxExtensions},swoole",
'max-libev' => "{$maxExtensions},libev",
'custom' => $customExtensions,
};
$writesh("\n\n");
$writesh(<<<BASH
# ----- "$flavor" flavor -----
echo "::group::Build $flavor libs"
# rebuild libs for this flavor to avoid cache
php /lwmbs/build_libs.php \
"$libraries" \
"--cc=\$LWMBS_CC" \
"--cxx=\$LWMBS_CXX" \
"--arch={$matrix['arch']}" \
"--fresh"
ret="\$?"
echo "::endgroup::"
if [ ! "\$ret" = "0" ]
then
echo "::error::failed build lib for $flavor"
else
BASH);
foreach ($matrix['sapis'] as $sapi) {
$command = match ($sapi) {
'micro' => 'build_micro.php',
'micro-cli' => 'build_micro.php --fakeCli',
'cli' => 'build_cli.php',
};
$targetBin = match ($sapi) {
'micro' => '/src/php-src/sapi/micro/micro.sfx',
'micro-cli' => '/src/php-src/sapi/micro/micro.sfx',
'cli' => '/src/php-src/sapi/cli/php',
};
$binName = match ($sapi) {
'micro' => "micro.sfx",
'micro-cli' => "micro_cli.sfx",
'cli' => "php",
};
// $writesh("\n");
// $writesh("# cleam php build dir\n");
$writesh("\n\n");
$writesh(<<<BASH
echo "::group::Build $flavor shared $sapi"
# {$matrix['libc']}_shared $sapi
# rm php_micro.lo to avoid cache
rm -f /src/php-src/sapi/micro/php_micro.lo
php /lwmbs/$command \
"$libraries" \
"$extensions" \
"--cc=\$LWMBS_CC" \
"--cxx=\$LWMBS_CXX" \
"--arch={$matrix['arch']}"
ret="\$?"
echo "::endgroup::"
if [ ! "\$ret" = "0" ]
then
echo "::error::failed build $flavor shared $sapi"
else
# copy the built bin out
mkdir -p /out/{$flavor}_shared
cp $targetBin /out/{$flavor}_shared/$binName
cp $targetBin.debug /out/{$flavor}_shared/$binName.debug
fi
BASH);
if ($matrix['libc'] == 'musl') {
$writesh("\n\n");
$writesh(<<<BASH
echo "::group::Build $flavor static $sapi"
# {$matrix['libc']}_static $sapi
# rm php_micro.lo to avoid cache
rm -f /src/php-src/sapi/micro/php_micro.lo
php /lwmbs/$command \
"$libraries" \
"$extensions" \
"--cc=\$LWMBS_CC" \
"--cxx=\$LWMBS_CXX" \
"--arch={$matrix['arch']}" \
"--allStatic"
ret="\$?"
echo "::endgroup::"
if [ ! "\$ret" = "0" ]
then
echo "::error::failed build $flavor static $sapi"
else
# copy the built bin out
mkdir -p /out/{$flavor}_static
cp $targetBin /out/{$flavor}_static/$binName
cp $targetBin.debug /out/{$flavor}_static/$binName.debug
fi
BASH);
}
}
$writesh("\n\n");
$writesh(<<<BASH
echo "::group::Dump $flavor licenses"
# dump licenses
php /lwmbs/dump_licenses.php \
"/out/{$flavor}_shared/licenses" \
"$libraries" \
"$extensions"
[ -d "/out/{$flavor}_static" ] && php /lwmbs/dump_licenses.php \
"/out/{$flavor}_static/licenses" \
"$libraries" \
"$extensions"
# copy versionFile
cp /versionFile "/out/{$flavor}_shared/versionFile"
[ -d "/out/{$flavor}_static" ] && cp /versionFile "/out/{$flavor}_static/versionFile"
echo "::endgroup::"
fi
BASH);
}
$writesh("\n");
- name: Build
shell: sh {0}
working-directory: /
run: |
set +e
. /tmp/build.sh
# mkdir -p /out/min_shared
# touch /out/min_shared/micro.sfx
# php /lwmbs/dump_licenses.php \
# "/out/min_shared/licenses" \
# "libffi" \
# "ffi"
# cp /versionFile "/out/min_shared/versionFile"
# - name: Setup node
# if: always()
# uses: actions/setup-node@v3
# with:
# node-version: '16'
- name: Prepare node for artifact upload
if: always()
shell: sh {0}
run: |
if [ '${{ matrix.libc }}' = 'musl' ]
then
apk add gcompat libstdc++
fi
npm i -g \
@actions/core \
@actions/github \
@actions/artifact \
@actions/exec
echo "NODE_PATH=$(npm root --quiet -g)" >> "$GITHUB_ENV"
which node
node --version
- name: Expose GitHub Runtime
if: always()
uses: crazy-max/ghaction-github-runtime@v3
- name: Upload artifacts
if: always()
shell: node {0}
run: |
const context = {
matrix: ${{ toJson(matrix) }},
github: ${{ toJson(github) }},
inputs: ${{ toJson(inputs) }},
}
const core = require('@actions/core');
const { main } = require('/lwmbs/.github/workflows/upload.js')
main('${{ secrets.GITHUB_TOKEN }}', 'linux', context).catch(err => core.setFailed(err.message))