summaryrefslogtreecommitdiff
path: root/azure/community_job.yml
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-07-21 11:20:27 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-07-21 11:28:41 +0200
commit6e09a3e203aa03eb0c65f79f96d154871185d558 (patch)
tree320cff128e6345c0018b65b1c1c9802ea065f11d /azure/community_job.yml
parentbb9e3dd6cc26da51a9ef55cdb18baf90f5ba2bda (diff)
downloadphp-git-6e09a3e203aa03eb0c65f79f96d154871185d558.tar.gz
Adjust Doctrine workaround in community job
[ci skip]
Diffstat (limited to 'azure/community_job.yml')
-rw-r--r--azure/community_job.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azure/community_job.yml b/azure/community_job.yml
index e75ba79017..75d9c792e1 100644
--- a/azure/community_job.yml
+++ b/azure/community_job.yml
@@ -58,7 +58,7 @@ jobs:
# We can use USE_TRACKED_ALLOC=1 if more of these show up.
sed -i "s/function_exists('pcntl_fork')/false/" tests/Filesystem/FilesystemTest.php
# Work around PHP 8 incompatibility in Doctrine
- sed -i 's/function query()/function query($statement = null)/' vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php
+ sed -i 's/function query()/function query(...$args)/' vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php
sed -i 's/public function getMessage();//' vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/DriverException.php
php vendor/bin/phpunit
displayName: 'Test Laravel'
@@ -68,7 +68,7 @@ jobs:
php7.3 /usr/bin/composer install --no-progress
php7.3 ./phpunit install
# Work around PHP 8 incompatibility in Doctrine
- sed -i 's/function query()/function query($statement = null)/' vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php
+ sed -i 's/function query()/function query(...$args)/' vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php
export USE_ZEND_ALLOC=0
export USE_TRACKED_ALLOC=1
export ASAN_OPTIONS=exitcode=139