mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: COMMUNTIY build grouping adjustments
This commit is contained in:
commit
bf6a74d2f9
1 changed files with 9 additions and 6 deletions
15
.github/workflows/nightly.yml
vendored
15
.github/workflows/nightly.yml
vendored
|
@ -570,8 +570,9 @@ jobs:
|
||||||
cd "amphp-$repository"
|
cd "amphp-$repository"
|
||||||
git rev-parse HEAD
|
git rev-parse HEAD
|
||||||
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
|
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
|
||||||
vendor/bin/phpunit || EXIT_CODE=$?
|
vendor/bin/phpunit
|
||||||
echo "::endgroup::"
|
EXIT_CODE=$?
|
||||||
|
echo -e "\n::endgroup::"
|
||||||
if [ ${EXIT_CODE:-0} -gt 128 ]; then
|
if [ ${EXIT_CODE:-0} -gt 128 ]; then
|
||||||
X=1;
|
X=1;
|
||||||
echo "Failed"
|
echo "Failed"
|
||||||
|
@ -603,8 +604,9 @@ jobs:
|
||||||
cd "reactphp-$repository"
|
cd "reactphp-$repository"
|
||||||
git rev-parse HEAD
|
git rev-parse HEAD
|
||||||
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
|
php /usr/bin/composer install --no-progress --ignore-platform-req=php+
|
||||||
vendor/bin/phpunit || EXIT_CODE=$?
|
vendor/bin/phpunit
|
||||||
echo "::endgroup::"
|
EXIT_CODE=$?
|
||||||
|
echo -e "\n::endgroup::"
|
||||||
if [ $[EXIT_CODE:-0} -gt 128 ]; then
|
if [ $[EXIT_CODE:-0} -gt 128 ]; then
|
||||||
X=1;
|
X=1;
|
||||||
echo "Failed"
|
echo "Failed"
|
||||||
|
@ -639,8 +641,9 @@ jobs:
|
||||||
X=0
|
X=0
|
||||||
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
|
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
|
||||||
echo "::group::$component"
|
echo "::group::$component"
|
||||||
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip || EXIT_CODE=$?
|
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip
|
||||||
echo "::endgroup::"
|
EXIT_CODE=$?
|
||||||
|
echo -e "\n::endgroup::"
|
||||||
if [ ${EXIT_CODE:-0} -gt 128 ]; then
|
if [ ${EXIT_CODE:-0} -gt 128 ]; then
|
||||||
X=1;
|
X=1;
|
||||||
echo "Failed"
|
echo "Failed"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue