mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
Merge branch 'PHP-8.4'
* PHP-8.4: COMMUNTIY build grouping adjustments
This commit is contained in:
@@ -558,8 +558,9 @@ jobs:
|
||||
cd "amphp-$repository"
|
||||
git rev-parse HEAD
|
||||
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
|
||||
vendor/bin/phpunit || EXIT_CODE=$?
|
||||
echo "::endgroup::"
|
||||
vendor/bin/phpunit
|
||||
EXIT_CODE=$?
|
||||
echo -e "\n::endgroup::"
|
||||
if [ ${EXIT_CODE:-0} -gt 128 ]; then
|
||||
X=1;
|
||||
echo "Failed"
|
||||
@@ -591,8 +592,9 @@ jobs:
|
||||
cd "reactphp-$repository"
|
||||
git rev-parse HEAD
|
||||
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
|
||||
vendor/bin/phpunit || EXIT_CODE=$?
|
||||
echo "::endgroup::"
|
||||
vendor/bin/phpunit
|
||||
EXIT_CODE=$?
|
||||
echo -e "\n::endgroup::"
|
||||
if [ $[EXIT_CODE:-0} -gt 128 ]; then
|
||||
X=1;
|
||||
echo "Failed"
|
||||
@@ -627,8 +629,9 @@ jobs:
|
||||
X=0
|
||||
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
|
||||
echo "::group::$component"
|
||||
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip || EXIT_CODE=$?
|
||||
echo "::endgroup::"
|
||||
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip
|
||||
EXIT_CODE=$?
|
||||
echo -e "\n::endgroup::"
|
||||
if [ ${EXIT_CODE:-0} -gt 128 ]; then
|
||||
X=1;
|
||||
echo "Failed"
|
||||
|
||||
Reference in New Issue
Block a user