Skip to content

Commit abe75ca

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: Fix ERROR_CODE handling in COMMUNITY build
2 parents 17826d3 + db5a395 commit abe75ca

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -558,8 +558,8 @@ jobs:
558558
cd "amphp-$repository"
559559
git rev-parse HEAD
560560
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
561-
vendor/bin/phpunit
562-
EXIT_CODE=$?
561+
EXIT_CODE=0
562+
vendor/bin/phpunit || EXIT_CODE=$?
563563
echo -e "\n::endgroup::"
564564
if [ ${EXIT_CODE:-0} -gt 128 ]; then
565565
X=1;
@@ -592,8 +592,8 @@ jobs:
592592
cd "reactphp-$repository"
593593
git rev-parse HEAD
594594
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
595-
vendor/bin/phpunit
596-
EXIT_CODE=$?
595+
EXIT_CODE=0
596+
vendor/bin/phpunit || EXIT_CODE=$?
597597
echo -e "\n::endgroup::"
598598
if [ $[EXIT_CODE:-0} -gt 128 ]; then
599599
X=1;
@@ -629,8 +629,8 @@ jobs:
629629
X=0
630630
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
631631
echo "::group::$component"
632-
php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip
633-
EXIT_CODE=$?
632+
EXIT_CODE=0
633+
php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip || EXIT_CODE=$?
634634
echo -e "\n::endgroup::"
635635
if [ ${EXIT_CODE:-0} -gt 128 ]; then
636636
X=1;

0 commit comments

Comments
 (0)