Skip to content

Commit 9cbc09d

Browse files
committed
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: COMMUNTIY build grouping adjustments
2 parents 871de14 + a63e976 commit 9cbc09d

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
@@ -570,8 +570,9 @@ 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 || EXIT_CODE=$?
574-
echo "::endgroup::"
573+
vendor/bin/phpunit
574+
EXIT_CODE=$?
575+
echo -e "\n::endgroup::"
575576
if [ ${EXIT_CODE:-0} -gt 128 ]; then
576577
X=1;
577578
echo "Failed"
@@ -603,8 +604,9 @@ jobs:
603604
cd "reactphp-$repository"
604605
git rev-parse HEAD
605606
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
606-
vendor/bin/phpunit || EXIT_CODE=$?
607-
echo "::endgroup::"
607+
vendor/bin/phpunit
608+
EXIT_CODE=$?
609+
echo -e "\n::endgroup::"
608610
if [ $[EXIT_CODE:-0} -gt 128 ]; then
609611
X=1;
610612
echo "Failed"
@@ -639,8 +641,9 @@ jobs:
639641
X=0
640642
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
641643
echo "::group::$component"
642-
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip || EXIT_CODE=$?
643-
echo "::endgroup::"
644+
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip
645+
EXIT_CODE=$?
646+
echo -e "\n::endgroup::"
644647
if [ ${EXIT_CODE:-0} -gt 128 ]; then
645648
X=1;
646649
echo "Failed"

0 commit comments

Comments
 (0)