From 0a136e797e26719947ca848185a8128f95868a37 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 25 Jul 2025 19:15:04 +0200 Subject: [PATCH 01/26] Create single workflow for all PHP versions --- .github/workflows/aft-build-all.yaml | 77 ++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 .github/workflows/aft-build-all.yaml diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml new file mode 100644 index 000000000..5f1ebbb11 --- /dev/null +++ b/.github/workflows/aft-build-all.yaml @@ -0,0 +1,77 @@ +name: Build PHP +on: + workflow_dispatch: + inputs: + selectos: + required: true + description: Build target OS + default: 'linux-x86_64' + type: choice + options: + - 'all' + # - 'linux-x86_64' + # - 'linux-aarch64' + - 'linux-x86_64-glibc' + # - 'linux-aarch64-glibc' + # - 'macos-x86_64' + - 'macos-aarch64' + # - 'windows' + php-version: + required: true + description: PHP version to compile + default: '8.3' + type: choice + options: + - '8.4' + - '8.3' + # - '8.2' + # - '8.1' + # create-docker: + # description: 'Create a docker image' + # type: boolean + # default: true + +run-name: "Build '${{ inputs.selectos }}' PHP version: ${{ inputs.php-version }}" + +jobs: + # Run single UNIX build + unix-static-build: + if: ${{ inputs.selectos != 'windows' && inputs.selectos != 'all' }} + uses: appsfortableau/static-php-cli/.github/workflows/build-unix.yml@main + with: + os: ${{ inputs.selectos }} + php-version: ${{ inputs.php-version }} + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + vendor-mode: true + + # Run UNIX build for all given versions. + unix-all-static-builds: + if: ${{ inputs.selectos == 'all' }} + uses: appsfortableau/static-php-cli/.github/workflows/build-unix.yml@main + strategy: + matrix: + selectos: [linux-x86_64-glibc, macos-aarch64] + with: + os: ${{ matrix.selectos }} + php-version: ${{ inputs.php-version }} + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + + release-php-version: + if: ${{ inputs.selectos == 'all' }} + needs: [unix-all-static-builds] + name: Release PHP version ${{ inputs.php-version }} + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v4 + with: + pattern: php-cli-* + - id: get_php_version + run: | + ls -la **/* + echo "PHP_VERSION=$(./php-cli-8.3-linux-x86_64-glibc/php -r "echo PHP_VERSION;")" >> "$GITHUB_OUTPUT" + - name: Release + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ steps.get_php_version.outputs.PHP_VERSION }} + files: php-cli-*.zip + make_latest: true From 491ecaf4c151d63bd20b25e0f467fc153e797ac8 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 25 Jul 2025 19:19:59 +0200 Subject: [PATCH 02/26] Update aft-build-all.yaml --- .github/workflows/aft-build-all.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 5f1ebbb11..153f2b2ac 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -1,4 +1,4 @@ -name: Build PHP +name: "AFT - Build PHP versions" on: workflow_dispatch: inputs: From 4a15483d64c12e15ae5d589cd4c027221551f39c Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 25 Jul 2025 19:21:27 +0200 Subject: [PATCH 03/26] Remove vendor-mode --- .github/workflows/aft-build-all.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 153f2b2ac..b209cb987 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -42,7 +42,6 @@ jobs: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' - vendor-mode: true # Run UNIX build for all given versions. unix-all-static-builds: From 79e3bb450d549384ca18b2657e49c7e19c440267 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 25 Jul 2025 19:34:33 +0200 Subject: [PATCH 04/26] make php executable --- .github/workflows/aft-build-all.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index b209cb987..f03ef4502 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -67,6 +67,7 @@ jobs: - id: get_php_version run: | ls -la **/* + chmod +x ./php-cli-8.3-linux-x86_64-glibc/php echo "PHP_VERSION=$(./php-cli-8.3-linux-x86_64-glibc/php -r "echo PHP_VERSION;")" >> "$GITHUB_OUTPUT" - name: Release uses: softprops/action-gh-release@v2 From a973d88f174ae8ac070da129d59bf4d886ce6355 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 08:56:34 +0200 Subject: [PATCH 05/26] Improved workflow --- .github/workflows/aft-build-all.yaml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index f03ef4502..26dc227b9 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -15,21 +15,20 @@ on: # - 'linux-aarch64-glibc' # - 'macos-x86_64' - 'macos-aarch64' - # - 'windows' + - 'windows' php-version: required: true description: PHP version to compile - default: '8.3' + default: '8.4' type: choice options: - '8.4' - '8.3' # - '8.2' # - '8.1' - # create-docker: - # description: 'Create a docker image' - # type: boolean - # default: true +env: + UNIX_EXTENSIONS: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + WINDOWS_EXTENSIONS: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' run-name: "Build '${{ inputs.selectos }}' PHP version: ${{ inputs.php-version }}" @@ -41,7 +40,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + extensions: ${{ env.UNIX_EXTENSIONS }} # Run UNIX build for all given versions. unix-all-static-builds: @@ -53,11 +52,20 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} - extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + extensions: ${{ env.UNIX_EXTENSIONS }} + + # Run single UNIX build + windows-static-build: + if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} + uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@main + with: + os: ${{ inputs.selectos }} + php-version: ${{ inputs.php-version }} + extensions: ${{ env.WINDOWS_EXTESIONS }} release-php-version: if: ${{ inputs.selectos == 'all' }} - needs: [unix-all-static-builds] + needs: [unix-all-static-builds, windows-static-build] name: Release PHP version ${{ inputs.php-version }} runs-on: ubuntu-latest steps: From 6de5e5db5e007b87ee918e59dc238344e126fd3c Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 08:58:39 +0200 Subject: [PATCH 06/26] Update aft-build-all.yaml --- .github/workflows/aft-build-all.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 26dc227b9..5da956a21 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -40,8 +40,8 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - extensions: ${{ env.UNIX_EXTENSIONS }} - + extensions: $UNIX_EXTENSIONS + # Run UNIX build for all given versions. unix-all-static-builds: if: ${{ inputs.selectos == 'all' }} @@ -52,7 +52,7 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} - extensions: ${{ env.UNIX_EXTENSIONS }} + extensions: $UNIX_EXTENSIONS # Run single UNIX build windows-static-build: @@ -61,7 +61,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - extensions: ${{ env.WINDOWS_EXTESIONS }} + extensions: $WINDOWS_EXTESIONS release-php-version: if: ${{ inputs.selectos == 'all' }} From 933b8b0699355e05844c4ba7d88907194f1d2bd2 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 09:33:15 +0200 Subject: [PATCH 07/26] make windows workflow callable from another workflow --- .github/workflows/build-windows-x86_64.yml | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/build-windows-x86_64.yml b/.github/workflows/build-windows-x86_64.yml index 57a681848..e94fb2693 100644 --- a/.github/workflows/build-windows-x86_64.yml +++ b/.github/workflows/build-windows-x86_64.yml @@ -32,6 +32,31 @@ on: debug: description: enable debug logs type: boolean + workflow_call: + inputs: + version: + required: true + description: php version to compile + default: '8.4' + type: string + build-cli: + description: build cli binary + default: true + type: boolean + build-micro: + description: build phpmicro binary + type: boolean + extensions: + description: extensions to compile (comma separated) + required: true + type: string + prefer-pre-built: + description: prefer pre-built binaries (reduce build time) + type: boolean + default: true + debug: + description: enable debug logs + type: boolean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 036ad149dc7c01517aeb7bc5157060d72dfb10af Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 09:34:19 +0200 Subject: [PATCH 08/26] change call to windows workflow --- .github/workflows/aft-build-all.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 5da956a21..836e4c6d3 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -57,7 +57,7 @@ jobs: # Run single UNIX build windows-static-build: if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} - uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@main + uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} From 598ec8bcd5b0b8b505c4244c83e5377d44bfbe9e Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 09:36:27 +0200 Subject: [PATCH 09/26] Update windows workflow to reflect right input version --- .github/workflows/aft-build-all.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 836e4c6d3..0981159e9 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -60,7 +60,7 @@ jobs: uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: os: ${{ inputs.selectos }} - php-version: ${{ inputs.php-version }} + version: ${{ inputs.php-version }} extensions: $WINDOWS_EXTESIONS release-php-version: From ddbb7c50897203386331be2537f5a1d09ea165a3 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 09:37:28 +0200 Subject: [PATCH 10/26] remove os parameter for input --- .github/workflows/aft-build-all.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 0981159e9..afc698691 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -59,7 +59,6 @@ jobs: if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: - os: ${{ inputs.selectos }} version: ${{ inputs.php-version }} extensions: $WINDOWS_EXTESIONS From 5ed63ab01373b0aa50baab69426015e1d2733696 Mon Sep 17 00:00:00 2001 From: tricker Date: Fri, 5 Sep 2025 10:53:27 +0200 Subject: [PATCH 11/26] change env --- .github/workflows/aft-build-all.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index afc698691..c869e2618 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -40,7 +40,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - extensions: $UNIX_EXTENSIONS + extensions: ${{ env.UNIX_EXTENSIONS }} # Run UNIX build for all given versions. unix-all-static-builds: @@ -52,7 +52,7 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} - extensions: $UNIX_EXTENSIONS + extensions: ${{ env.UNIX_EXTENSIONS }} # Run single UNIX build windows-static-build: @@ -60,7 +60,7 @@ jobs: uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: version: ${{ inputs.php-version }} - extensions: $WINDOWS_EXTESIONS + extensions: ${{ env.WINDOWS_EXTESIONS }} release-php-version: if: ${{ inputs.selectos == 'all' }} From 1fcf5b7b90c335e9015632208bea2c1d6aaaaa68 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 15:37:02 +0200 Subject: [PATCH 12/26] fix typo --- .github/workflows/aft-build-all.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index c869e2618..cfd6b7897 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -60,7 +60,7 @@ jobs: uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: version: ${{ inputs.php-version }} - extensions: ${{ env.WINDOWS_EXTESIONS }} + extensions: ${{ env.WINDOWS_EXTENSIONS }} release-php-version: if: ${{ inputs.selectos == 'all' }} From 2d04ab13c29408cedbd742df9e3ef1fc3c28f871 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 15:58:56 +0200 Subject: [PATCH 13/26] slightly adjusting typo --- .github/workflows/aft-build-all.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index cfd6b7897..65bb9f954 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -26,9 +26,10 @@ on: - '8.3' # - '8.2' # - '8.1' + env: - UNIX_EXTENSIONS: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' - WINDOWS_EXTENSIONS: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib + WINDOWS_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib run-name: "Build '${{ inputs.selectos }}' PHP version: ${{ inputs.php-version }}" From ed7e3b830caaebb17019938b5eae5a4fdde68a88 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 16:27:16 +0200 Subject: [PATCH 14/26] hardcode --- .github/workflows/aft-build-all.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 65bb9f954..9b754fef2 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -27,9 +27,9 @@ on: # - '8.2' # - '8.1' -env: - UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib - WINDOWS_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib +# env: +# UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib +# WINDOWS_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib run-name: "Build '${{ inputs.selectos }}' PHP version: ${{ inputs.php-version }}" @@ -41,7 +41,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - extensions: ${{ env.UNIX_EXTENSIONS }} + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run UNIX build for all given versions. unix-all-static-builds: @@ -53,7 +53,7 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} - extensions: ${{ env.UNIX_EXTENSIONS }} + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run single UNIX build windows-static-build: @@ -61,7 +61,7 @@ jobs: uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: version: ${{ inputs.php-version }} - extensions: ${{ env.WINDOWS_EXTENSIONS }} + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' release-php-version: if: ${{ inputs.selectos == 'all' }} From 6addb8f59d18928e1aad5466f626ac17f750bd04 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 16:42:52 +0200 Subject: [PATCH 15/26] test relative path --- .github/workflows/aft-build-all.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 9b754fef2..1111f57d4 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -37,7 +37,7 @@ jobs: # Run single UNIX build unix-static-build: if: ${{ inputs.selectos != 'windows' && inputs.selectos != 'all' }} - uses: appsfortableau/static-php-cli/.github/workflows/build-unix.yml@main + uses: ./.github/workflows/build-unix.yml@main with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} @@ -46,7 +46,7 @@ jobs: # Run UNIX build for all given versions. unix-all-static-builds: if: ${{ inputs.selectos == 'all' }} - uses: appsfortableau/static-php-cli/.github/workflows/build-unix.yml@main + uses: ./.github/workflows/build-unix.yml@main strategy: matrix: selectos: [linux-x86_64-glibc, macos-aarch64] @@ -58,7 +58,7 @@ jobs: # Run single UNIX build windows-static-build: if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} - uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main + uses: ./.github/workflows/build-windows-x86_64.yml@aft-main with: version: ${{ inputs.php-version }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' From b6f1169969f093cad774cd60499ffd02abbc5000 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 16:44:26 +0200 Subject: [PATCH 16/26] revert test --- .github/workflows/aft-build-all.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 1111f57d4..9b754fef2 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -37,7 +37,7 @@ jobs: # Run single UNIX build unix-static-build: if: ${{ inputs.selectos != 'windows' && inputs.selectos != 'all' }} - uses: ./.github/workflows/build-unix.yml@main + uses: appsfortableau/static-php-cli/.github/workflows/build-unix.yml@main with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} @@ -46,7 +46,7 @@ jobs: # Run UNIX build for all given versions. unix-all-static-builds: if: ${{ inputs.selectos == 'all' }} - uses: ./.github/workflows/build-unix.yml@main + uses: appsfortableau/static-php-cli/.github/workflows/build-unix.yml@main strategy: matrix: selectos: [linux-x86_64-glibc, macos-aarch64] @@ -58,7 +58,7 @@ jobs: # Run single UNIX build windows-static-build: if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} - uses: ./.github/workflows/build-windows-x86_64.yml@aft-main + uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main with: version: ${{ inputs.php-version }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' From b9f7d74bd155ad939cef1c37f1095159b382252c Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 17:01:11 +0200 Subject: [PATCH 17/26] disable windows --- .github/workflows/aft-build-all.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 9b754fef2..c60a125c7 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -56,16 +56,17 @@ jobs: extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run single UNIX build - windows-static-build: - if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} - uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main - with: - version: ${{ inputs.php-version }} - extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + # windows-static-build: + # if: ${{ inputs.selectos == 'windows' || inputs.selectos == 'all' }} + # uses: appsfortableau/static-php-cli/.github/workflows/build-windows-x86_64.yml@aft-main + # with: + # version: ${{ inputs.php-version }} + # extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' release-php-version: if: ${{ inputs.selectos == 'all' }} - needs: [unix-all-static-builds, windows-static-build] + #needs: [unix-all-static-builds, windows-static-build] + needs: [unix-all-static-builds] name: Release PHP version ${{ inputs.php-version }} runs-on: ubuntu-latest steps: From 09bd1537a9d2e5723dc59969ad799834e4103168 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 17:23:22 +0200 Subject: [PATCH 18/26] Added debug and support runner.debug --- .github/workflows/aft-build-all.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index c60a125c7..0db53854a 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -26,6 +26,9 @@ on: - '8.3' # - '8.2' # - '8.1' + debug: + description: Show full build logs + type: boolean # env: # UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib @@ -41,6 +44,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} + debug: ${{ inputs.debug || runner.debug }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run UNIX build for all given versions. @@ -53,6 +57,7 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} + debug: ${{ inputs.debug || runner.debug }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run single UNIX build From 2415f3540844012dc2081e99c7fa4e1821ad4653 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 17:26:20 +0200 Subject: [PATCH 19/26] Change runner.debug --- .github/workflows/aft-build-all.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 0db53854a..b4b320b3e 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -44,7 +44,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - debug: ${{ inputs.debug || runner.debug }} + debug: ${{ inputs.debug || env.RUNNER_DEBUG }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run UNIX build for all given versions. @@ -57,7 +57,7 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} - debug: ${{ inputs.debug || runner.debug }} + debug: ${{ inputs.debug || env.RUNNER_DEBUG }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run single UNIX build From b835a58635019f8ade4c75138f3f511bed7294ce Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 17:31:46 +0200 Subject: [PATCH 20/26] fix the broken --- .github/workflows/aft-build-all.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index b4b320b3e..1666ffa56 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -29,6 +29,7 @@ on: debug: description: Show full build logs type: boolean + default: ${{ env.RUNNER_DEBUG }} # env: # UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib @@ -44,7 +45,7 @@ jobs: with: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} - debug: ${{ inputs.debug || env.RUNNER_DEBUG }} + debug: ${{ inputs.debug }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run UNIX build for all given versions. @@ -57,7 +58,7 @@ jobs: with: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} - debug: ${{ inputs.debug || env.RUNNER_DEBUG }} + debug: ${{ inputs.debug }} extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run single UNIX build From e0ce8a81f9984efd7242f4e447fd6912b9a8e7a2 Mon Sep 17 00:00:00 2001 From: tricker Date: Mon, 8 Sep 2025 17:32:35 +0200 Subject: [PATCH 21/26] Update aft-build-all.yaml --- .github/workflows/aft-build-all.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 1666ffa56..ca57c3ea1 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -29,7 +29,6 @@ on: debug: description: Show full build logs type: boolean - default: ${{ env.RUNNER_DEBUG }} # env: # UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib From bd911c96d8063de1049a5929c6c2b1b4397da35e Mon Sep 17 00:00:00 2001 From: tricker Date: Tue, 9 Sep 2025 11:14:07 +0200 Subject: [PATCH 22/26] try build micro --- .github/workflows/aft-build-all.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index ca57c3ea1..909183808 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -30,10 +30,6 @@ on: description: Show full build logs type: boolean -# env: -# UNIX_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib -# WINDOWS_EXTENSIONS: odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib - run-name: "Build '${{ inputs.selectos }}' PHP version: ${{ inputs.php-version }}" jobs: @@ -45,6 +41,7 @@ jobs: os: ${{ inputs.selectos }} php-version: ${{ inputs.php-version }} debug: ${{ inputs.debug }} + build-micro: true extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run UNIX build for all given versions. From 38d70d8e05be6feea10e4e38296a0c2aa2b2c9fc Mon Sep 17 00:00:00 2001 From: tricker Date: Tue, 9 Sep 2025 16:31:03 +0200 Subject: [PATCH 23/26] fix wrong version number --- .github/workflows/aft-build-all.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 909183808..91596ce84 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -78,8 +78,8 @@ jobs: - id: get_php_version run: | ls -la **/* - chmod +x ./php-cli-8.3-linux-x86_64-glibc/php - echo "PHP_VERSION=$(./php-cli-8.3-linux-x86_64-glibc/php -r "echo PHP_VERSION;")" >> "$GITHUB_OUTPUT" + chmod +x ./php-cli-${{ inputs.php-version }}-linux-x86_64-glibc/php + echo "PHP_VERSION=$(./php-cli-${{ inputs.php-version }}-linux-x86_64-glibc/php -r "echo PHP_VERSION;")" >> "$GITHUB_OUTPUT" - name: Release uses: softprops/action-gh-release@v2 with: From 2c566c03e0a02ed079eee7c467c32bf2b042ad08 Mon Sep 17 00:00:00 2001 From: tricker Date: Wed, 10 Sep 2025 09:48:06 +0200 Subject: [PATCH 24/26] Added rezipping step --- .github/workflows/aft-build-all.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index 91596ce84..ebd96d484 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -80,6 +80,13 @@ jobs: ls -la **/* chmod +x ./php-cli-${{ inputs.php-version }}-linux-x86_64-glibc/php echo "PHP_VERSION=$(./php-cli-${{ inputs.php-version }}-linux-x86_64-glibc/php -r "echo PHP_VERSION;")" >> "$GITHUB_OUTPUT" + - name: Recursively zip all files in each folder, naming zip after folder + run: | + find . -type d | while read dir; do + [ "$dir" = "." ] && continue + foldername=$(basename "$dir") + (cd "$dir" && zip -r "../${foldername}.zip" .) + done - name: Release uses: softprops/action-gh-release@v2 with: From a51491dc0774303676e94f4b70f6f8eb554f920f Mon Sep 17 00:00:00 2001 From: tricker Date: Thu, 9 Oct 2025 14:37:56 +0200 Subject: [PATCH 25/26] Added DOM extension --- .github/workflows/aft-build-all.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aft-build-all.yaml b/.github/workflows/aft-build-all.yaml index ebd96d484..cf8ed4af5 100644 --- a/.github/workflows/aft-build-all.yaml +++ b/.github/workflows/aft-build-all.yaml @@ -42,7 +42,7 @@ jobs: php-version: ${{ inputs.php-version }} debug: ${{ inputs.debug }} build-micro: true - extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,dom,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run UNIX build for all given versions. unix-all-static-builds: @@ -55,7 +55,7 @@ jobs: os: ${{ matrix.selectos }} php-version: ${{ inputs.php-version }} debug: ${{ inputs.debug }} - extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' + extensions: 'odbc,pdo_odbc,bcmath,calendar,ctype,curl,dba,dom,exif,fileinfo,filter,gd,libxml,mbregex,mbstring,msgpack,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pdo_sqlsrv,pgsql,phar,posix,readline,redis,session,simplexml,sockets,sodium,sqlite3,sqlsrv,tokenizer,xml,xmlreader,xmlwriter,zip,zlib' # Run single UNIX build # windows-static-build: From da7a3185ccd57bf00f8a7b5e30c644d657a60cfc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Feb 2026 13:55:14 +0000 Subject: [PATCH 26/26] Bump rollup from 4.49.0 to 4.59.0 Bumps [rollup](https://github.com/rollup/rollup) from 4.49.0 to 4.59.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v4.49.0...v4.59.0) --- updated-dependencies: - dependency-name: rollup dependency-version: 4.59.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 274 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 152 insertions(+), 122 deletions(-) diff --git a/yarn.lock b/yarn.lock index 61bba08eb..8a213e257 100644 --- a/yarn.lock +++ b/yarn.lock @@ -189,105 +189,130 @@ resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.29.tgz#f8fc9a8788757dccba0d3b7fee93183621773d4c" integrity sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q== -"@rollup/rollup-android-arm-eabi@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.49.0.tgz#ba432433f5e7b419dba2be407d1d59fea6b8de48" - integrity sha512-rlKIeL854Ed0e09QGYFlmDNbka6I3EQFw7iZuugQjMb11KMpJCLPFL4ZPbMfaEhLADEL1yx0oujGkBQ7+qW3eA== - -"@rollup/rollup-android-arm64@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.49.0.tgz#4e05c86e0fb9af6eaf52fc298dcdec577477e35c" - integrity sha512-cqPpZdKUSQYRtLLr6R4X3sD4jCBO1zUmeo3qrWBCqYIeH8Q3KRL4F3V7XJ2Rm8/RJOQBZuqzQGWPjjvFUcYa/w== - -"@rollup/rollup-darwin-arm64@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.49.0.tgz#788fad425b4129875639e0c14b6441c5f3b69d46" - integrity sha512-99kMMSMQT7got6iYX3yyIiJfFndpojBmkHfTc1rIje8VbjhmqBXE+nb7ZZP3A5skLyujvT0eIUCUsxAe6NjWbw== - -"@rollup/rollup-darwin-x64@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.49.0.tgz#d44e05bee55b781d7c2cf535d9f9169787c3599d" - integrity sha512-y8cXoD3wdWUDpjOLMKLx6l+NFz3NlkWKcBCBfttUn+VGSfgsQ5o/yDUGtzE9HvsodkP0+16N0P4Ty1VuhtRUGg== - -"@rollup/rollup-freebsd-arm64@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.49.0.tgz#107786b4d604495224c3543bfd2cae33ddf76500" - integrity sha512-3mY5Pr7qv4GS4ZvWoSP8zha8YoiqrU+e0ViPvB549jvliBbdNLrg2ywPGkgLC3cmvN8ya3za+Q2xVyT6z+vZqA== - -"@rollup/rollup-freebsd-x64@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.49.0.tgz#54e105c3da27f31084ca6913fed603627755abde" - integrity sha512-C9KzzOAQU5gU4kG8DTk+tjdKjpWhVWd5uVkinCwwFub2m7cDYLOdtXoMrExfeBmeRy9kBQMkiyJ+HULyF1yj9w== - -"@rollup/rollup-linux-arm-gnueabihf@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.49.0.tgz#725c23e0766b5d9368180bc2c427a51e31d0e147" - integrity sha512-OVSQgEZDVLnTbMq5NBs6xkmz3AADByCWI4RdKSFNlDsYXdFtlxS59J+w+LippJe8KcmeSSM3ba+GlsM9+WwC1w== - -"@rollup/rollup-linux-arm-musleabihf@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.49.0.tgz#6946b0d2f132f2baf5657945b81565d8abd51cc0" - integrity sha512-ZnfSFA7fDUHNa4P3VwAcfaBLakCbYaxCk0jUnS3dTou9P95kwoOLAMlT3WmEJDBCSrOEFFV0Y1HXiwfLYJuLlA== - -"@rollup/rollup-linux-arm64-gnu@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.49.0.tgz#83510a6d03e748619241a17f5a879418a963c5ed" - integrity sha512-Z81u+gfrobVK2iV7GqZCBfEB1y6+I61AH466lNK+xy1jfqFLiQ9Qv716WUM5fxFrYxwC7ziVdZRU9qvGHkYIJg== - -"@rollup/rollup-linux-arm64-musl@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.49.0.tgz#085b98d44c10908626dd40f26bf924433bbd8471" - integrity sha512-zoAwS0KCXSnTp9NH/h9aamBAIve0DXeYpll85shf9NJ0URjSTzzS+Z9evmolN+ICfD3v8skKUPyk2PO0uGdFqg== - -"@rollup/rollup-linux-loongarch64-gnu@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.49.0.tgz#13e0a4808e9f7924f2cc8c133603f627c7a00543" - integrity sha512-2QyUyQQ1ZtwZGiq0nvODL+vLJBtciItC3/5cYN8ncDQcv5avrt2MbKt1XU/vFAJlLta5KujqyHdYtdag4YEjYQ== - -"@rollup/rollup-linux-ppc64-gnu@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.49.0.tgz#aeee4e47fc9ca5d6687e686fea4696202af6b2f4" - integrity sha512-k9aEmOWt+mrMuD3skjVJSSxHckJp+SiFzFG+v8JLXbc/xi9hv2icSkR3U7uQzqy+/QbbYY7iNB9eDTwrELo14g== - -"@rollup/rollup-linux-riscv64-gnu@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.49.0.tgz#603e4591643f1d7851a96d096cf7fcd273f7b0e1" - integrity sha512-rDKRFFIWJ/zJn6uk2IdYLc09Z7zkE5IFIOWqpuU0o6ZpHcdniAyWkwSUWE/Z25N/wNDmFHHMzin84qW7Wzkjsw== - -"@rollup/rollup-linux-riscv64-musl@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.49.0.tgz#f8fd9b01f1888e1816d5a398789d430511286c00" - integrity sha512-FkkhIY/hYFVnOzz1WeV3S9Bd1h0hda/gRqvZCMpHWDHdiIHn6pqsY3b5eSbvGccWHMQ1uUzgZTKS4oGpykf8Tw== - -"@rollup/rollup-linux-s390x-gnu@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.49.0.tgz#37a1fd372d9b93d2b75b2f37c482ecf52f52849b" - integrity sha512-gRf5c+A7QiOG3UwLyOOtyJMD31JJhMjBvpfhAitPAoqZFcOeK3Kc1Veg1z/trmt+2P6F/biT02fU19GGTS529A== - -"@rollup/rollup-linux-x64-gnu@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.49.0.tgz#131e66dbf7e71cb2a389acc45319bd4c990e093a" - integrity sha512-BR7+blScdLW1h/2hB/2oXM+dhTmpW3rQt1DeSiCP9mc2NMMkqVgjIN3DDsNpKmezffGC9R8XKVOLmBkRUcK/sA== - -"@rollup/rollup-linux-x64-musl@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.49.0.tgz#b7245a5ea57db9679e8bf3032c25a5d2c5f54056" - integrity sha512-hDMOAe+6nX3V5ei1I7Au3wcr9h3ktKzDvF2ne5ovX8RZiAHEtX1A5SNNk4zt1Qt77CmnbqT+upb/umzoPMWiPg== - -"@rollup/rollup-win32-arm64-msvc@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.49.0.tgz#768a128bb5da3c5472c3c56aec77507d28bc7209" - integrity sha512-wkNRzfiIGaElC9kXUT+HLx17z7D0jl+9tGYRKwd8r7cUqTL7GYAvgUY++U2hK6Ar7z5Z6IRRoWC8kQxpmM7TDA== - -"@rollup/rollup-win32-ia32-msvc@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.49.0.tgz#ce3f3b2eebe585340631498666718f00983a6a62" - integrity sha512-gq5aW/SyNpjp71AAzroH37DtINDcX1Qw2iv9Chyz49ZgdOP3NV8QCyKZUrGsYX9Yyggj5soFiRCgsL3HwD8TdA== - -"@rollup/rollup-win32-x64-msvc@4.49.0": - version "4.49.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.49.0.tgz#c2a0e3b81262a7e9dd12ce18b350a97558dd50bc" - integrity sha512-gEtqFbzmZLFk2xKh7g0Rlo8xzho8KrEFEkzvHbfUGkrgXOpZ4XagQ6n+wIZFNh1nTb8UD16J4nFSFKXYgnbdBg== +"@rollup/rollup-android-arm-eabi@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz#a6742c74c7d9d6d604ef8a48f99326b4ecda3d82" + integrity sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg== + +"@rollup/rollup-android-arm64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz#97247be098de4df0c11971089fd2edf80a5da8cf" + integrity sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q== + +"@rollup/rollup-darwin-arm64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz#674852cf14cf11b8056e0b1a2f4e872b523576cf" + integrity sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg== + +"@rollup/rollup-darwin-x64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz#36dfd7ed0aaf4d9d89d9ef983af72632455b0246" + integrity sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w== + +"@rollup/rollup-freebsd-arm64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz#2f87c2074b4220260fdb52a9996246edfc633c22" + integrity sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA== + +"@rollup/rollup-freebsd-x64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz#9b5a26522a38a95dc06616d1939d4d9a76937803" + integrity sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg== + +"@rollup/rollup-linux-arm-gnueabihf@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz#86aa4859385a8734235b5e40a48e52d770758c3a" + integrity sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw== + +"@rollup/rollup-linux-arm-musleabihf@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz#cbe70e56e6ece8dac83eb773b624fc9e5a460976" + integrity sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA== + +"@rollup/rollup-linux-arm64-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz#d14992a2e653bc3263d284bc6579b7a2890e1c45" + integrity sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA== + +"@rollup/rollup-linux-arm64-musl@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz#2fdd1ddc434ea90aeaa0851d2044789b4d07f6da" + integrity sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA== + +"@rollup/rollup-linux-loong64-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz#8a181e6f89f969f21666a743cd411416c80099e7" + integrity sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg== + +"@rollup/rollup-linux-loong64-musl@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz#904125af2babc395f8061daa27b5af1f4e3f2f78" + integrity sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q== + +"@rollup/rollup-linux-ppc64-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz#a57970ac6864c9a3447411a658224bdcf948be22" + integrity sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA== + +"@rollup/rollup-linux-ppc64-musl@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz#bb84de5b26870567a4267666e08891e80bb56a63" + integrity sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA== + +"@rollup/rollup-linux-riscv64-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz#72d00d2c7fb375ce3564e759db33f17a35bffab9" + integrity sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg== + +"@rollup/rollup-linux-riscv64-musl@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz#4c166ef58e718f9245bd31873384ba15a5c1a883" + integrity sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg== + +"@rollup/rollup-linux-s390x-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz#bb5025cde9a61db478c2ca7215808ad3bce73a09" + integrity sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w== + +"@rollup/rollup-linux-x64-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz#9b66b1f9cd95c6624c788f021c756269ffed1552" + integrity sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg== + +"@rollup/rollup-linux-x64-musl@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz#b007ca255dc7166017d57d7d2451963f0bd23fd9" + integrity sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg== + +"@rollup/rollup-openbsd-x64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz#e8b357b2d1aa2c8d76a98f5f0d889eabe93f4ef9" + integrity sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ== + +"@rollup/rollup-openharmony-arm64@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz#96c2e3f4aacd3d921981329831ff8dde492204dc" + integrity sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA== + +"@rollup/rollup-win32-arm64-msvc@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz#2d865149d706d938df8b4b8f117e69a77646d581" + integrity sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A== + +"@rollup/rollup-win32-ia32-msvc@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz#abe1593be0fa92325e9971c8da429c5e05b92c36" + integrity sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA== + +"@rollup/rollup-win32-x64-gnu@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz#c4af3e9518c9a5cd4b1c163dc81d0ad4d82e7eab" + integrity sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA== + +"@rollup/rollup-win32-x64-msvc@4.59.0": + version "4.59.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz#4584a8a87b29188a4c1fe987a9fcf701e256d86c" + integrity sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA== "@shikijs/core@3.12.0", "@shikijs/core@^3.9.2": version "3.12.0" @@ -833,32 +858,37 @@ rfdc@^1.4.1: integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== rollup@^4.43.0: - version "4.49.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.49.0.tgz#9751ad9d06a47a4496c3c5c238b27b1422c8b0eb" - integrity sha512-3IVq0cGJ6H7fKXXEdVt+RcYvRCt8beYY9K1760wGQwSAHZcS9eot1zDG5axUbcp/kWRi5zKIIDX8MoKv/TzvZA== + version "4.59.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.59.0.tgz#cf74edac17c1486f562d728a4d923a694abdf06f" + integrity sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg== dependencies: "@types/estree" "1.0.8" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.49.0" - "@rollup/rollup-android-arm64" "4.49.0" - "@rollup/rollup-darwin-arm64" "4.49.0" - "@rollup/rollup-darwin-x64" "4.49.0" - "@rollup/rollup-freebsd-arm64" "4.49.0" - "@rollup/rollup-freebsd-x64" "4.49.0" - "@rollup/rollup-linux-arm-gnueabihf" "4.49.0" - "@rollup/rollup-linux-arm-musleabihf" "4.49.0" - "@rollup/rollup-linux-arm64-gnu" "4.49.0" - "@rollup/rollup-linux-arm64-musl" "4.49.0" - "@rollup/rollup-linux-loongarch64-gnu" "4.49.0" - "@rollup/rollup-linux-ppc64-gnu" "4.49.0" - "@rollup/rollup-linux-riscv64-gnu" "4.49.0" - "@rollup/rollup-linux-riscv64-musl" "4.49.0" - "@rollup/rollup-linux-s390x-gnu" "4.49.0" - "@rollup/rollup-linux-x64-gnu" "4.49.0" - "@rollup/rollup-linux-x64-musl" "4.49.0" - "@rollup/rollup-win32-arm64-msvc" "4.49.0" - "@rollup/rollup-win32-ia32-msvc" "4.49.0" - "@rollup/rollup-win32-x64-msvc" "4.49.0" + "@rollup/rollup-android-arm-eabi" "4.59.0" + "@rollup/rollup-android-arm64" "4.59.0" + "@rollup/rollup-darwin-arm64" "4.59.0" + "@rollup/rollup-darwin-x64" "4.59.0" + "@rollup/rollup-freebsd-arm64" "4.59.0" + "@rollup/rollup-freebsd-x64" "4.59.0" + "@rollup/rollup-linux-arm-gnueabihf" "4.59.0" + "@rollup/rollup-linux-arm-musleabihf" "4.59.0" + "@rollup/rollup-linux-arm64-gnu" "4.59.0" + "@rollup/rollup-linux-arm64-musl" "4.59.0" + "@rollup/rollup-linux-loong64-gnu" "4.59.0" + "@rollup/rollup-linux-loong64-musl" "4.59.0" + "@rollup/rollup-linux-ppc64-gnu" "4.59.0" + "@rollup/rollup-linux-ppc64-musl" "4.59.0" + "@rollup/rollup-linux-riscv64-gnu" "4.59.0" + "@rollup/rollup-linux-riscv64-musl" "4.59.0" + "@rollup/rollup-linux-s390x-gnu" "4.59.0" + "@rollup/rollup-linux-x64-gnu" "4.59.0" + "@rollup/rollup-linux-x64-musl" "4.59.0" + "@rollup/rollup-openbsd-x64" "4.59.0" + "@rollup/rollup-openharmony-arm64" "4.59.0" + "@rollup/rollup-win32-arm64-msvc" "4.59.0" + "@rollup/rollup-win32-ia32-msvc" "4.59.0" + "@rollup/rollup-win32-x64-gnu" "4.59.0" + "@rollup/rollup-win32-x64-msvc" "4.59.0" fsevents "~2.3.2" shiki@^3.9.2: