From 5338e43f1531f449f320e7be05ae69834be03d1a Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 11 Mar 2025 17:15:01 +0100 Subject: [PATCH] gitlab-ci: Add downstream job for PHP --- .gitlab-ci.yml | 5 +++++ .gitlab-ci/Dockerfile | 4 ++++ .gitlab-ci/downstream-php.sh | 39 ++++++++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 .gitlab-ci/downstream-php.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0cb727cd..87d835b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -321,3 +321,8 @@ downstream-perl: image: registry.gitlab.gnome.org/gnome/libxml2 script: - sh .gitlab-ci/downstream-perl.sh + +downstream-php: + image: registry.gitlab.gnome.org/gnome/libxml2 + script: + - sh .gitlab-ci/downstream-php.sh diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile index be811557..56372f41 100644 --- a/.gitlab-ci/Dockerfile +++ b/.gitlab-ci/Dockerfile @@ -38,3 +38,7 @@ RUN apt-get install -y --no-install-recommends \ libyaml-perl RUN cpanm -n Alien::Libxml2 RUN apt-get remove -y libxml2-dev + +# PHP +RUN apt-get install -y --no-install-recommends \ + bison re2c libsqlite3-dev diff --git a/.gitlab-ci/downstream-php.sh b/.gitlab-ci/downstream-php.sh new file mode 100644 index 00000000..cba25385 --- /dev/null +++ b/.gitlab-ci/downstream-php.sh @@ -0,0 +1,39 @@ +#!/bin/sh + +set -e + +srcdir=$(pwd) + +mkdir -p install +installdir="$srcdir/install" +export PKG_CONFIG_PATH="$installdir/lib/pkgconfig" + +sh autogen.sh "--prefix=$installdir" --without-python +make -j$(nproc) +make install + +git clone --depth 1 https://gitlab.gnome.org/GNOME/libxslt.git +cd libxslt +sh autogen.sh \ + "--prefix=$installdir" \ + "--with-libxml-prefix=$installdir" \ + --without-python +make -j$(nproc) +make install +cd .. + +git clone --depth 1 https://github.com/php/php-src.git +cd php-src +./buildconf +./configure --with-xsl --enable-soap --enable-debug +make -j$(nproc) +make TESTS=" \ + ext/dom \ + ext/libxml \ + ext/simplexml \ + ext/soap \ + ext/xml \ + ext/xmlreader \ + ext/xmlwriter \ + ext/xsl \ +" test