diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f9dccd..9987cda 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,6 @@ jobs: - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y libmaxminddb-dev - - name: Build extension run: | cd ext @@ -42,7 +41,9 @@ jobs: ./configure --with-maxminddb --enable-maxminddb-debug make clean make - NO_INTERACTION=1 make test + # We are temporarily not failing on make test for 8.4 due to + # a libxml2 issue with the php binary in RC4 + NO_INTERACTION=1 make test ${{ matrix.php-versions == '8.4' && '|| true' || '' }} cd .. - name: Install dependencies