diff --git a/.ansible/group_vars/all/mods.yml b/.ansible/group_vars/all/mods.yml index d36ec12..8e3c53b 100644 --- a/.ansible/group_vars/all/mods.yml +++ b/.ansible/group_vars/all/mods.yml @@ -1380,7 +1380,8 @@ extensions_available: 8.2: type: git git_url: https://github.com/xdebug/xdebug - git_ref: $(git tag | grep -E '^[.0-9]+$' | sort -V | tail -1) + # FIXME: revert to latest tag once PHP 8.2 support is out of alpha/beta + git_ref: 3.2.0RC2 configure: --enable-xdebug 8.1: type: git diff --git a/Dockerfiles/mods/Dockerfile-8.2 b/Dockerfiles/mods/Dockerfile-8.2 index e12cbca..1b52e11 100644 --- a/Dockerfiles/mods/Dockerfile-8.2 +++ b/Dockerfiles/mods/Dockerfile-8.2 @@ -682,7 +682,7 @@ RUN set -eux \ && git clone https://github.com/xdebug/xdebug /tmp/xdebug \ && cd /tmp/xdebug \ # Custom: Branch - && git checkout $(git tag | grep -E '^[.0-9]+$' | sort -V | tail -1) \ + && git checkout 3.2.0RC2 \ # Default: Install command && phpize \ && ./configure --enable-xdebug \ diff --git a/php_modules/xdebug/build.yml b/php_modules/xdebug/build.yml index 11d8112..977be01 100644 --- a/php_modules/xdebug/build.yml +++ b/php_modules/xdebug/build.yml @@ -11,7 +11,8 @@ all: 8.2: type: git git_url: https://github.com/xdebug/xdebug - git_ref: $(git tag | grep -E '^[.0-9]+$' | sort -V | tail -1) + # FIXME: revert to latest tag once PHP 8.2 support is out of alpha/beta + git_ref: 3.2.0RC2 configure: --enable-xdebug 8.1: