From eb5790612611a31562d2e67493e6640ded593cff Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 5 Nov 2024 09:09:21 -0400 Subject: [PATCH 01/24] Attempt at ppc64 CI This assumes gentoo (which has best ppc64be support of mainstream distributions). (Rebased onto the new workflow_call approach) --- .github/actions/configure-gentoo/action.yml | 79 +++++++++++++++++++++ .github/actions/emerge/action.yml | 51 +++++++++++++ .github/actions/test-gentoo/action.yml | 21 ++++++ .github/workflows/nightly.yml | 50 +++++++++++++ 4 files changed, 201 insertions(+) create mode 100644 .github/actions/configure-gentoo/action.yml create mode 100644 .github/actions/emerge/action.yml create mode 100644 .github/actions/test-gentoo/action.yml diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml new file mode 100644 index 0000000000000..fe02dacfcdaf6 --- /dev/null +++ b/.github/actions/configure-gentoo/action.yml @@ -0,0 +1,79 @@ +name: ./configure +inputs: + configurationParameters: + default: '' + required: false + skipSlow: + default: false + required: false +runs: + using: composite + steps: + - shell: bash + run: | + set -x + ./buildconf --force + ./configure \ + --enable-option-checking=fatal \ + --prefix=/usr \ + --enable-phpdbg \ + --enable-fpm \ + --with-pdo-mysql=mysqlnd \ + --with-mysqli=mysqlnd \ + ${{ inputs.skipSlow == 'false' && '--with-pgsql' || '' }} \ + ${{ inputs.skipSlow == 'false' && '--with-pdo-pgsql' || '' }} \ + ${{ inputs.skipSlow == 'false' && '--with-pdo-sqlite' || '' }} \ + --enable-intl \ + --without-pear \ + --enable-gd \ + --with-jpeg \ + --with-webp \ + --with-freetype \ + --with-xpm \ + --enable-exif \ + --with-zip \ + --with-zlib \ + --enable-soap \ + --enable-xmlreader \ + --with-xsl \ + ${{ inputs.skipSlow == 'false' && '--with-tidy' || '' }} \ + --enable-sysvsem \ + --enable-sysvshm \ + --enable-shmop \ + --enable-pcntl \ + --with-readline \ + --enable-mbstring \ + --with-iconv=/usr \ + --with-curl \ + --with-gettext \ + --enable-sockets \ + --with-bz2 \ + --with-openssl \ + --with-gmp \ + --enable-bcmath \ + --enable-calendar \ + --enable-ftp \ + ${{ inputs.skipSlow == 'false' && '--with-enchant=/usr' || '' }} \ + --enable-sysvmsg \ + --with-ffi \ + --enable-zend-test \ + ${{ inputs.skipSlow == 'false' && '--enable-dl-test=shared' || '' }} \ + ${{ inputs.skipSlow == 'false' && '--with-ldap' || '' }} \ + ${{ inputs.skipSlow == 'false' && '--with-ldap-sasl' || '' }} \ + --with-password-argon2 \ + --with-mhash \ + --with-sodium \ + --enable-dba \ + --with-cdb \ + --enable-flatfile \ + --enable-inifile \ + --with-lmdb \ + --with-gdbm \ + ${{ inputs.skipSlow == 'false' && '--with-snmp' || '' }} \ + ${{ inputs.skipSlow == 'false' && '--with-unixODBC' || '' }} \ + ${{ inputs.skipSlow == 'false' && '--with-pdo-odbc=unixODBC,/usr' || '' }} \ + --with-config-file-path=/etc \ + --with-config-file-scan-dir=/etc/php.d \ + ${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \ + --enable-werror \ + ${{ inputs.configurationParameters }} diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml new file mode 100644 index 0000000000000..6014ea2267105 --- /dev/null +++ b/.github/actions/emerge/action.yml @@ -0,0 +1,51 @@ +name: emerge +runs: + using: composite + steps: + - shell: sh + # Omitting libiconv from glibc system + # XXX: mysql-client needed? IMAP i don't think so anymore either + # XXX: Set USE flags appropriately to i.e. avoid installing servers + # (though if they're masked it doesn't matter) + # XXX: For now this is nopped out since it doesn't run in a container yet + run: | + emerge --noreplace \ + sys-apps/util-linux \ + app-shells/bash \ + app-admin/sudo \ + dev-build/autoconf \ + app-arch/unzip \ + app-arch/tar \ + sys-devel/bison \ + dev-util/re2c \ + dev-util/pkgconf \ + app-arch/bzip2 \ + net-misc/curl \ + media-libs/freetype \ + sys-devel/gettext \ + dev-libs/gmp \ + dev-libs/icu \ + media-libs/libjpeg-turbo \ + dev-libs/libffi \ + media-libs/libpng \ + dev-libs/libsodium \ + media-libs/libwebp \ + dev-libs/libxml2 \ + x11-libs/libXpm \ + dev-libs/libxslt \ + dev-libs/libzip \ + dev-libs/oniguruma \ + dev-libs/openssl \ + dev-libs/libedit \ + dev-db/sqlite \ + app-text/htmltidy \ + sys-libs/gdbm \ + dev-db/lmdb \ + app-crypt/argon2 \ + app-text/enchant \ + dev-db/freetds \ + net-analyzer/net-snmp \ + net-nds/openldap \ + dev-db/unixODBC \ + dev-db/postgresql + || true diff --git a/.github/actions/test-gentoo/action.yml b/.github/actions/test-gentoo/action.yml new file mode 100644 index 0000000000000..2e04ed486fa4f --- /dev/null +++ b/.github/actions/test-gentoo/action.yml @@ -0,0 +1,21 @@ +name: Test +inputs: + runTestsParameters: + default: '' + required: false +runs: + using: composite + steps: + - shell: bash + run: | + set -x + # XXX: Set up database tests? + export SKIP_IO_CAPTURE_TESTS=1 + export STACK_LIMIT_DEFAULTS_CHECK=1 + sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \ + -j$(nproc) \ + -g FAIL,BORK,LEAK,XLEAK \ + --no-progress \ + --show-diff \ + --show-slow 1000 \ + --set-timeout 120 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2377286ca830c..d8abd39056e78 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -17,6 +17,9 @@ on: run_alpine: required: true type: boolean + run_linux_ppc64: + required: true + type: boolean run_macos_arm64: required: true type: boolean @@ -35,6 +38,53 @@ on: permissions: contents: read jobs: + LINUX_PPC64: + needs: GENERATE_MATRIX + if: inputs.run_linux_ppc64 + strategy: + fail-fast: false + matrix: + include: ${{ fromJson(needs.GENERATE_MATRIX.outputs.alpine-matrix-include) }} + name: LINUX_PPC64_ASAN_UBSAN_DEBUG_ZTS + runs-on: [self-hosted, gentoo, ppc64] + steps: + - name: git checkout + uses: actions/checkout@v4 + with: + ref: ${{ matrix.branch.ref }} + - name: emerge + uses: ./.github/actions/emerge + - name: System info + run: | + echo "::group::Show host CPU info" + lscpu + echo "::endgroup::" + echo "::group::Show installed packages" + cat /var/lib/portage/world + echo "::endgroup::" + - name: ./configure + uses: ./.github/actions/configure-gentoo + with: + configurationParameters: >- + CFLAGS="-fsanitize=undefined,address -fno-sanitize=function -DZEND_TRACK_ARENA_ALLOC" + LDFLAGS="-fsanitize=undefined,address -fno-sanitize=function" + --enable-debug + --enable-zts + skipSlow: true # FIXME: This should likely include slow extensions + - name: make + run: make -j$(/usr/bin/nproc) >/dev/null + # Skip an install action for now + - name: Tests + uses: ./.github/actions/test-gentoo + # There is no PPC JIT, so rip this out + with: + runTestsParameters: >- + --asan -x + - name: Notify Slack + if: failure() + uses: ./.github/actions/notify-slack + with: + token: ${{ secrets.ACTION_MONITORING_SLACK }} ALPINE: if: inputs.run_alpine name: ALPINE_X64_ASAN_UBSAN_DEBUG_ZTS From 85964cf8e5d1b9564c7d1f28ddccbf6a537c899e Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sat, 21 Sep 2024 18:01:28 -0300 Subject: [PATCH 02/24] oops, make that || true so the nop works --- .github/actions/emerge/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml index 6014ea2267105..71ef1c2ccf471 100644 --- a/.github/actions/emerge/action.yml +++ b/.github/actions/emerge/action.yml @@ -47,5 +47,5 @@ runs: net-analyzer/net-snmp \ net-nds/openldap \ dev-db/unixODBC \ - dev-db/postgresql + dev-db/postgresql \ || true From 2a16d837ee7d99f0fb5a51da9e46fcee4914dd73 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 11:47:44 -0300 Subject: [PATCH 03/24] Print config.log on config failure --- .github/actions/configure-gentoo/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index fe02dacfcdaf6..68bc4223623f6 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -77,3 +77,7 @@ runs: ${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \ --enable-werror \ ${{ inputs.configurationParameters }} + || (echo "::group::config.log" + cat config.log + echo "::endgroup::" + exit 1) From 615d8bcde7faa39316087e15e7d41d8a7ae20ca7 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 11:50:55 -0300 Subject: [PATCH 04/24] helps to put the backslash there --- .github/actions/configure-gentoo/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index 68bc4223623f6..d28a3eafe7d62 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -76,7 +76,7 @@ runs: --with-config-file-scan-dir=/etc/php.d \ ${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \ --enable-werror \ - ${{ inputs.configurationParameters }} + ${{ inputs.configurationParameters }} \ || (echo "::group::config.log" cat config.log echo "::endgroup::" From d51e50a0cd63ffaedcc132d2a823fbf6a9b38399 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 11:58:58 -0300 Subject: [PATCH 05/24] try to fix formatting --- .github/actions/configure-gentoo/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index d28a3eafe7d62..07b0a19add9d8 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -77,7 +77,8 @@ runs: ${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \ --enable-werror \ ${{ inputs.configurationParameters }} \ - || (echo "::group::config.log" + || (echo + echo "::group::Show config.log" cat config.log echo "::endgroup::" exit 1) From 7e65505a264f564bb05adcd113671cf8752e972a Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 12:06:50 -0300 Subject: [PATCH 06/24] subshells don't work for this --- .github/actions/configure-gentoo/action.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index 07b0a19add9d8..7f5a77276208b 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -11,6 +11,12 @@ runs: steps: - shell: bash run: | + func oops() { + echo "::group::Show config.log" + cat config.log + echo "::endgroup::" + } + trap oops ERR set -x ./buildconf --force ./configure \ @@ -76,9 +82,4 @@ runs: --with-config-file-scan-dir=/etc/php.d \ ${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \ --enable-werror \ - ${{ inputs.configurationParameters }} \ - || (echo - echo "::group::Show config.log" - cat config.log - echo "::endgroup::" - exit 1) + ${{ inputs.configurationParameters }} From 2c9c7a7a8f558ff5f88a3557613547a5f75051c8 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 12:10:47 -0300 Subject: [PATCH 07/24] fix bash syntax. oops --- .github/actions/configure-gentoo/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index 7f5a77276208b..c46678ecaa0d9 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -11,7 +11,7 @@ runs: steps: - shell: bash run: | - func oops() { + oops() { echo "::group::Show config.log" cat config.log echo "::endgroup::" From 2b549e67f73321b50ab53daac7c0c74984c0ad01 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 12:15:10 -0300 Subject: [PATCH 08/24] we can't trust anything, can we --- .github/actions/configure-gentoo/action.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index c46678ecaa0d9..383b53e7a3779 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -11,12 +11,6 @@ runs: steps: - shell: bash run: | - oops() { - echo "::group::Show config.log" - cat config.log - echo "::endgroup::" - } - trap oops ERR set -x ./buildconf --force ./configure \ @@ -82,4 +76,4 @@ runs: --with-config-file-scan-dir=/etc/php.d \ ${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \ --enable-werror \ - ${{ inputs.configurationParameters }} + ${{ inputs.configurationParameters }} || cat config.log From fcf0ec5639f9261c8a8abfc57ee73645b69f652d Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sun, 22 Sep 2024 12:30:51 -0300 Subject: [PATCH 09/24] will this just use libc iconv? --- .github/actions/configure-gentoo/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index 383b53e7a3779..f8f5fff0e92f9 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -43,7 +43,7 @@ runs: --enable-pcntl \ --with-readline \ --enable-mbstring \ - --with-iconv=/usr \ + --with-iconv \ --with-curl \ --with-gettext \ --enable-sockets \ From 813b5e6176f5cfa3387e7abb98aaa8ff9a7f12b7 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 24 Sep 2024 10:52:24 -0300 Subject: [PATCH 10/24] the power8 could maybe use more optimization --- .github/actions/test-gentoo/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/test-gentoo/action.yml b/.github/actions/test-gentoo/action.yml index 2e04ed486fa4f..13d66818724b4 100644 --- a/.github/actions/test-gentoo/action.yml +++ b/.github/actions/test-gentoo/action.yml @@ -10,6 +10,7 @@ runs: run: | set -x # XXX: Set up database tests? + # Slow tests criteron is doubled because this runner isn't as fast as others export SKIP_IO_CAPTURE_TESTS=1 export STACK_LIMIT_DEFAULTS_CHECK=1 sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \ @@ -17,5 +18,5 @@ runs: -g FAIL,BORK,LEAK,XLEAK \ --no-progress \ --show-diff \ - --show-slow 1000 \ + --show-slow 2000 \ --set-timeout 120 From aa3105335afae5d44169903f51903f5ffddd5b90 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 5 Nov 2024 09:15:17 -0400 Subject: [PATCH 11/24] remove matrix generation remnants --- .github/workflows/nightly.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d8abd39056e78..3c9f679713adf 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -39,19 +39,14 @@ permissions: contents: read jobs: LINUX_PPC64: - needs: GENERATE_MATRIX if: inputs.run_linux_ppc64 - strategy: - fail-fast: false - matrix: - include: ${{ fromJson(needs.GENERATE_MATRIX.outputs.alpine-matrix-include) }} name: LINUX_PPC64_ASAN_UBSAN_DEBUG_ZTS runs-on: [self-hosted, gentoo, ppc64] steps: - name: git checkout uses: actions/checkout@v4 with: - ref: ${{ matrix.branch.ref }} + ref: ${{ branch }} - name: emerge uses: ./.github/actions/emerge - name: System info From 391e54a877625f054b453106640ca59daab4adea Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 24 Dec 2024 15:09:45 -0400 Subject: [PATCH 12/24] Commit typo in checkout ref --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3c9f679713adf..d2ad119df397b 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -46,7 +46,7 @@ jobs: - name: git checkout uses: actions/checkout@v4 with: - ref: ${{ branch }} + ref: ${{ inputs.branch }} - name: emerge uses: ./.github/actions/emerge - name: System info From 6ffafd664c3461a96d2d4fc19cb5f1ba187fad68 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 24 Dec 2024 15:12:23 -0400 Subject: [PATCH 13/24] Add ppc64 to run >=8.4 --- .github/workflows/root.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/root.yml b/.github/workflows/root.yml index 5cdd70489343f..25b7a6baadef7 100644 --- a/.github/workflows/root.yml +++ b/.github/workflows/root.yml @@ -53,6 +53,7 @@ jobs: community_verify_type_inference: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 4) || matrix.branch.version[0] >= 9 }} libmysqlclient_with_mysqli: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1) }} run_alpine: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 4) || matrix.branch.version[0] >= 9 }} + run_linux_ppc64: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 4) || matrix.branch.version[0] >= 9 }} run_macos_arm64: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 4) || matrix.branch.version[0] >= 9 }} ubuntu_version: ${{ (((matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 5) || matrix.branch.version[0] >= 9) && '24.04') From 616ef55f2930559e6b397d8daf9216f422aa54c6 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 24 Dec 2024 15:23:42 -0400 Subject: [PATCH 14/24] use clang-17 since gcc doesn't have FSan (and that's the default) --- .github/workflows/nightly.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d2ad119df397b..9a99a12815898 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -63,6 +63,8 @@ jobs: configurationParameters: >- CFLAGS="-fsanitize=undefined,address -fno-sanitize=function -DZEND_TRACK_ARENA_ALLOC" LDFLAGS="-fsanitize=undefined,address -fno-sanitize=function" + CC=clang-17 + CXX=clang++-17 --enable-debug --enable-zts skipSlow: true # FIXME: This should likely include slow extensions From a440e8f06270ebdac85a26b598361cd30e412437 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Tue, 7 Jan 2025 16:35:36 -0400 Subject: [PATCH 15/24] Run mysql tests Not using containers (yet), for now just setting up MariaDB with an unprivileged user and seeing how that goes. Postgres and Firebird also seem doable, although SQL Server for ODBC definitely won't be. --- .github/actions/test-gentoo/action.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/test-gentoo/action.yml b/.github/actions/test-gentoo/action.yml index 13d66818724b4..48695aebcc477 100644 --- a/.github/actions/test-gentoo/action.yml +++ b/.github/actions/test-gentoo/action.yml @@ -9,7 +9,15 @@ runs: - shell: bash run: | set -x - # XXX: Set up database tests? + # XXX: Set up other database tests? + # XXX: These tests are not running containerized + export MYSQL_TEST_USER=ci + export MYSQL_TEST_PASSWD=ci + if [[ -z "$PDO_MYSQL_TEST_DSN" ]]; then + export PDO_MYSQL_TEST_DSN="mysql:host=localhost;dbname=test" + fi + export PDO_MYSQL_TEST_USER=ci + export PDO_MYSQL_TEST_PASS=ci # Slow tests criteron is doubled because this runner isn't as fast as others export SKIP_IO_CAPTURE_TESTS=1 export STACK_LIMIT_DEFAULTS_CHECK=1 From 15f2f65cf497e90fa643aa61c1ec14a61188948b Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Wed, 8 Jan 2025 11:14:05 -0400 Subject: [PATCH 16/24] Just assert that packages are installed instead --- .github/actions/emerge/action.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml index 71ef1c2ccf471..8f3ef01aaada7 100644 --- a/.github/actions/emerge/action.yml +++ b/.github/actions/emerge/action.yml @@ -3,13 +3,12 @@ runs: using: composite steps: - shell: sh - # Omitting libiconv from glibc system - # XXX: mysql-client needed? IMAP i don't think so anymore either - # XXX: Set USE flags appropriately to i.e. avoid installing servers - # (though if they're masked it doesn't matter) - # XXX: For now this is nopped out since it doesn't run in a container yet + # This does nothing, as currently the Gentoo/ppc64 CI system is + # not running jobs containerized. + # + # - libiconv is not used, glibc iconv is instead run: | - emerge --noreplace \ + for package in \ sys-apps/util-linux \ app-shells/bash \ app-admin/sudo \ @@ -47,5 +46,10 @@ runs: net-analyzer/net-snmp \ net-nds/openldap \ dev-db/unixODBC \ - dev-db/postgresql \ - || true + dev-db/postgresql; do + echo $package + if ! portageq has_version / $package; then + echo "need to install $package" + exit 1 + fi + done From 69c6f8b3410c00582ff5b74b0135b747fc2602a2 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Wed, 8 Jan 2025 14:31:11 -0400 Subject: [PATCH 17/24] also test pg --- .github/actions/test-gentoo/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/test-gentoo/action.yml b/.github/actions/test-gentoo/action.yml index 48695aebcc477..ec9fb0b70c6a3 100644 --- a/.github/actions/test-gentoo/action.yml +++ b/.github/actions/test-gentoo/action.yml @@ -18,6 +18,10 @@ runs: fi export PDO_MYSQL_TEST_USER=ci export PDO_MYSQL_TEST_PASS=ci + export PGSQL_TEST_CONNSTR="host=localhost dbname=test port=5432 user=ci password=ci" + if [[ -z "$PDO_PGSQL_TEST_DSN" ]]; then + export PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=ci password=ci" + fi # Slow tests criteron is doubled because this runner isn't as fast as others export SKIP_IO_CAPTURE_TESTS=1 export STACK_LIMIT_DEFAULTS_CHECK=1 From e13b60a5185bfc13db2c1f1058a30aa24c4c3c3b Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Fri, 10 Jan 2025 15:08:55 -0400 Subject: [PATCH 18/24] Enable slow extensions PDO_sqlite, the Pg extensions, SNMP, LDAP, Enchant, Tidy, ODBC, and PDO_DBLIB. Note that DBLIB and ODBC will be hard to test since the tests assume SQL Server. LDAP and SNMP may require config on the PPC CI server, but Pg shhould be configured and ready to go. --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9a99a12815898..60b6226c3dc03 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -67,7 +67,7 @@ jobs: CXX=clang++-17 --enable-debug --enable-zts - skipSlow: true # FIXME: This should likely include slow extensions + skipSlow: false # FIXME: This should likely include slow extensions - name: make run: make -j$(/usr/bin/nproc) >/dev/null # Skip an install action for now From 85132ad2f82eb6ffc1fe229b1f905d36ccaf0f19 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Fri, 10 Jan 2025 15:49:24 -0400 Subject: [PATCH 19/24] Add SASL as a dependency for ext/ldap --- .github/actions/emerge/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml index 8f3ef01aaada7..4edc3bd7236f1 100644 --- a/.github/actions/emerge/action.yml +++ b/.github/actions/emerge/action.yml @@ -45,8 +45,10 @@ runs: dev-db/freetds \ net-analyzer/net-snmp \ net-nds/openldap \ + dev-libs/cyrus-sasl \ dev-db/unixODBC \ - dev-db/postgresql; do + dev-db/postgresql \ + ; do echo $package if ! portageq has_version / $package; then echo "need to install $package" From 0a9899efc2e7a63742af05a9ddc3a546760c64e6 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Fri, 10 Jan 2025 15:55:28 -0400 Subject: [PATCH 20/24] Fix searching for libraries like LDAP The checks for things like ext/ldap will assume libraries are in ./lib, and not lib64 like they are on many multilib systems, Gentoo included. Gross that we're hardcoding it, but we should also probably convert ldap to pkg-config sometime. That may require getting rid of Oracle or Solaris LDAP support though. --- .github/actions/configure-gentoo/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index f8f5fff0e92f9..4f7b554ffe8f1 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -16,6 +16,7 @@ runs: ./configure \ --enable-option-checking=fatal \ --prefix=/usr \ + --with-libdir=lib64 \ --enable-phpdbg \ --enable-fpm \ --with-pdo-mysql=mysqlnd \ From 1e3f096e0932d1a105cc0179fe417f3fb9079e60 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Fri, 10 Jan 2025 16:29:35 -0400 Subject: [PATCH 21/24] add dictionaries for hunspell Gentoo default USE flags seem to use hunspell for enchant. --- .github/actions/emerge/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml index 4edc3bd7236f1..3011b37ef24c5 100644 --- a/.github/actions/emerge/action.yml +++ b/.github/actions/emerge/action.yml @@ -42,6 +42,8 @@ runs: dev-db/lmdb \ app-crypt/argon2 \ app-text/enchant \ + app-dict/myspell-en \ + app-dict/myspell-de \ dev-db/freetds \ net-analyzer/net-snmp \ net-nds/openldap \ From 3e9c61a7cff8462d7921c1a062a3b33a54d0fb3a Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sat, 11 Jan 2025 14:50:13 -0400 Subject: [PATCH 22/24] typo in pkg name --- .github/actions/emerge/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml index 3011b37ef24c5..25ad30ada1c17 100644 --- a/.github/actions/emerge/action.yml +++ b/.github/actions/emerge/action.yml @@ -42,8 +42,8 @@ runs: dev-db/lmdb \ app-crypt/argon2 \ app-text/enchant \ - app-dict/myspell-en \ - app-dict/myspell-de \ + app-dicts/myspell-en \ + app-dicts/myspell-de \ dev-db/freetds \ net-analyzer/net-snmp \ net-nds/openldap \ From bd087500b7e302284dd1f7687887f313e773b363 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Sat, 11 Jan 2025 16:55:48 -0400 Subject: [PATCH 23/24] Add Tokyo Cabinet, use QDBM instead of GDBM GDBM is broken with ext/pgsql/tests/80_bug14383.phpt --- .github/actions/configure-gentoo/action.yml | 3 ++- .github/actions/emerge/action.yml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/configure-gentoo/action.yml b/.github/actions/configure-gentoo/action.yml index 4f7b554ffe8f1..e1ae914681fb0 100644 --- a/.github/actions/configure-gentoo/action.yml +++ b/.github/actions/configure-gentoo/action.yml @@ -68,8 +68,9 @@ runs: --with-cdb \ --enable-flatfile \ --enable-inifile \ + --with-tcadb \ --with-lmdb \ - --with-gdbm \ + --with-qdbm \ ${{ inputs.skipSlow == 'false' && '--with-snmp' || '' }} \ ${{ inputs.skipSlow == 'false' && '--with-unixODBC' || '' }} \ ${{ inputs.skipSlow == 'false' && '--with-pdo-odbc=unixODBC,/usr' || '' }} \ diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml index 25ad30ada1c17..edebf696ea519 100644 --- a/.github/actions/emerge/action.yml +++ b/.github/actions/emerge/action.yml @@ -39,6 +39,8 @@ runs: dev-db/sqlite \ app-text/htmltidy \ sys-libs/gdbm \ + dev-db/qdbm \ + dev-db/tokyocabinet \ dev-db/lmdb \ app-crypt/argon2 \ app-text/enchant \ From a7e5d09411b1cae6668df8c0d73b0b36f99d0803 Mon Sep 17 00:00:00 2001 From: Calvin Buckley Date: Thu, 27 Feb 2025 11:36:37 -0400 Subject: [PATCH 24/24] Remove no-op emerge action See https://wiki.php.net/systems/ci and the linked page for how this system should be configured. --- .github/actions/emerge/action.yml | 61 ------------------------------- .github/workflows/nightly.yml | 3 +- 2 files changed, 1 insertion(+), 63 deletions(-) delete mode 100644 .github/actions/emerge/action.yml diff --git a/.github/actions/emerge/action.yml b/.github/actions/emerge/action.yml deleted file mode 100644 index edebf696ea519..0000000000000 --- a/.github/actions/emerge/action.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: emerge -runs: - using: composite - steps: - - shell: sh - # This does nothing, as currently the Gentoo/ppc64 CI system is - # not running jobs containerized. - # - # - libiconv is not used, glibc iconv is instead - run: | - for package in \ - sys-apps/util-linux \ - app-shells/bash \ - app-admin/sudo \ - dev-build/autoconf \ - app-arch/unzip \ - app-arch/tar \ - sys-devel/bison \ - dev-util/re2c \ - dev-util/pkgconf \ - app-arch/bzip2 \ - net-misc/curl \ - media-libs/freetype \ - sys-devel/gettext \ - dev-libs/gmp \ - dev-libs/icu \ - media-libs/libjpeg-turbo \ - dev-libs/libffi \ - media-libs/libpng \ - dev-libs/libsodium \ - media-libs/libwebp \ - dev-libs/libxml2 \ - x11-libs/libXpm \ - dev-libs/libxslt \ - dev-libs/libzip \ - dev-libs/oniguruma \ - dev-libs/openssl \ - dev-libs/libedit \ - dev-db/sqlite \ - app-text/htmltidy \ - sys-libs/gdbm \ - dev-db/qdbm \ - dev-db/tokyocabinet \ - dev-db/lmdb \ - app-crypt/argon2 \ - app-text/enchant \ - app-dicts/myspell-en \ - app-dicts/myspell-de \ - dev-db/freetds \ - net-analyzer/net-snmp \ - net-nds/openldap \ - dev-libs/cyrus-sasl \ - dev-db/unixODBC \ - dev-db/postgresql \ - ; do - echo $package - if ! portageq has_version / $package; then - echo "need to install $package" - exit 1 - fi - done diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 60b6226c3dc03..7993c1b6e3586 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -41,14 +41,13 @@ jobs: LINUX_PPC64: if: inputs.run_linux_ppc64 name: LINUX_PPC64_ASAN_UBSAN_DEBUG_ZTS + # This runs on a self-hosted runner; see https://wiki.php.net/systems/ci runs-on: [self-hosted, gentoo, ppc64] steps: - name: git checkout uses: actions/checkout@v4 with: ref: ${{ inputs.branch }} - - name: emerge - uses: ./.github/actions/emerge - name: System info run: | echo "::group::Show host CPU info"