Skip to content

Commit aae35f3

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix ERROR_CODE handling in COMMUNITY build
2 parents bd2766c + 080ba20 commit aae35f3

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
@@ -570,8 +570,8 @@ jobs:
570570
cd "amphp-$repository"
571571
git rev-parse HEAD
572572
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
573-
vendor/bin/phpunit
574-
EXIT_CODE=$?
573+
EXIT_CODE=0
574+
vendor/bin/phpunit || EXIT_CODE=$?
575575
echo -e "\n::endgroup::"
576576
if [ ${EXIT_CODE:-0} -gt 128 ]; then
577577
X=1;
@@ -604,8 +604,8 @@ jobs:
604604
cd "reactphp-$repository"
605605
git rev-parse HEAD
606606
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
607-
vendor/bin/phpunit
608-
EXIT_CODE=$?
607+
EXIT_CODE=0
608+
vendor/bin/phpunit || EXIT_CODE=$?
609609
echo -e "\n::endgroup::"
610610
if [ $[EXIT_CODE:-0} -gt 128 ]; then
611611
X=1;
@@ -641,8 +641,8 @@ jobs:
641641
X=0
642642
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
643643
echo "::group::$component"
644-
php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip
645-
EXIT_CODE=$?
644+
EXIT_CODE=0
645+
php ./phpunit $component --exclude-group tty --exclude-group benchmark --exclude-group intl-data --exclude-group transient --exclude-group skip || EXIT_CODE=$?
646646
echo -e "\n::endgroup::"
647647
if [ ${EXIT_CODE:-0} -gt 128 ]; then
648648
X=1;

0 commit comments

Comments
 (0)