We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623bf96 commit e0c9467Copy full SHA for e0c9467
azure/community_job.yml
@@ -92,4 +92,16 @@ jobs:
92
sed -i 's/$exit = true/$exit = false/g' vendor/phpunit/phpunit/src/TextUI/Command.php
93
php vendor/bin/phpunit
94
displayName: 'Test Amphp'
95
+ - script: |
96
+ git clone https://github.com/sebastianbergmann/phpunit.git --branch=master --depth=1
97
+ cd phpunit
98
+ export USE_ZEND_ALLOC=0
99
+ export USE_TRACKED_ALLOC=1
100
+ export ASAN_OPTIONS=exitcode=139
101
+ php7.3 /usr/bin/composer install --no-progress
102
+ php ./phpunit
103
+ if [ $? -gt 128 ]; then
104
+ exit 1
105
+ fi
106
+ displayName: 'Test PHPUnit'
107
condition: or(succeeded(), failed())
0 commit comments