@@ -56,20 +56,22 @@ jobs:
56
56
sed -i "s/function_exists('pcntl_fork')/false/" tests/Filesystem/FilesystemTest.php
57
57
php vendor/bin/phpunit
58
58
displayName: 'Test Laravel'
59
- - script : |
60
- git clone https://github.com/symfony/symfony.git --branch=master --depth=1
61
- cd symfony
62
- php7.3 /usr/bin/composer install --no-progress
63
- export USE_ZEND_ALLOC=0
64
- export USE_TRACKED_ALLOC=1
65
- export ASAN_OPTIONS=exitcode=139
66
- # Close stdin because we hang on some kind of tty test otherwise.
67
- php ./phpunit 0<&-
68
- if [ $? -gt 128 ]; then
69
- exit 1
70
- fi
71
- displayName: 'Test Symfony'
72
- condition: or(succeeded(), failed())
59
+ # Symfony has complicated custom PHPUnit handling -- we'd at least need an
60
+ # --ignore-platform-reqs in there, or run the install under a different version.
61
+ # - script: |
62
+ # - git clone https://github.com/symfony/symfony.git --branch=master --depth=1
63
+ # - cd symfony
64
+ # - php7.3 /usr/bin/composer install --no-progress
65
+ # - export USE_ZEND_ALLOC=0
66
+ # - export USE_TRACKED_ALLOC=1
67
+ # - export ASAN_OPTIONS=exitcode=139
68
+ # - # Close stdin because we hang on some kind of tty test otherwise.
69
+ # - php ./phpunit 0<&-
70
+ # - if [ $? -gt 128 ]; then
71
+ # - exit 1
72
+ # - fi
73
+ # - displayName: 'Test Symfony'
74
+ # - condition: or(succeeded(), failed())
73
75
- script : |
74
76
git clone https://github.com/amphp/amp.git --branch=master --depth=1
75
77
cd amp
0 commit comments