Skip to content

Commit 63cb81f

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: COMMUNTIY build grouping adjustments
2 parents 1e0c8ba + d628ed5 commit 63cb81f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -558,8 +558,9 @@ 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 || EXIT_CODE=$?
562-
echo "::endgroup::"
561+
vendor/bin/phpunit
562+
EXIT_CODE=$?
563+
echo -e "\n::endgroup::"
563564
if [ ${EXIT_CODE:-0} -gt 128 ]; then
564565
X=1;
565566
echo "Failed"
@@ -591,8 +592,9 @@ jobs:
591592
cd "reactphp-$repository"
592593
git rev-parse HEAD
593594
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
594-
vendor/bin/phpunit || EXIT_CODE=$?
595-
echo "::endgroup::"
595+
vendor/bin/phpunit
596+
EXIT_CODE=$?
597+
echo -e "\n::endgroup::"
596598
if [ $[EXIT_CODE:-0} -gt 128 ]; then
597599
X=1;
598600
echo "Failed"
@@ -627,8 +629,9 @@ jobs:
627629
X=0
628630
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
629631
echo "::group::$component"
630-
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip || EXIT_CODE=$?
631-
echo "::endgroup::"
632+
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip
633+
EXIT_CODE=$?
634+
echo -e "\n::endgroup::"
632635
if [ ${EXIT_CODE:-0} -gt 128 ]; then
633636
X=1;
634637
echo "Failed"

0 commit comments

Comments
 (0)