1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  [skip ci] Use !cancelled() over always() in GHA config
This commit is contained in:
Ilija Tovilo
2025-01-24 14:27:38 +01:00

View File

@@ -427,7 +427,7 @@ jobs:
-d zend_extension=opcache.so
-d opcache.enable_cli=1
- uses: codecov/codecov-action@v4
if: always()
if: !cancelled()
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
@@ -500,7 +500,7 @@ jobs:
echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini
php -v
- name: Test AMPHP
if: always()
if: !cancelled()
run: |
repositories="amp cache dns file http parallel parser pipeline process serialization socket sync websocket-client websocket-server"
X=0
@@ -518,7 +518,7 @@ jobs:
done
exit $X
- name: Test Laravel
if: always()
if: !cancelled()
run: |
git clone https://github.com/laravel/framework.git --branch=master --depth=1
cd framework
@@ -531,7 +531,7 @@ jobs:
exit 1
fi
- name: Test ReactPHP
if: always()
if: !cancelled()
run: |
repositories="async cache child-process datagram dns event-loop promise promise-stream promise-timer stream"
X=0
@@ -549,7 +549,7 @@ jobs:
done
exit $X
- name: Test Revolt PHP
if: always()
if: !cancelled()
run: |
git clone https://github.com/revoltphp/event-loop.git --depth=1
cd event-loop
@@ -560,7 +560,7 @@ jobs:
exit 1
fi
- name: Test Symfony
if: always() && !inputs.skip_symfony
if: !cancelled() && !inputs.skip_symfony
run: |
git clone https://github.com/symfony/symfony.git --depth=1
cd symfony
@@ -581,7 +581,7 @@ jobs:
done
exit $X
- name: Test PHPUnit
if: always()
if: !cancelled()
run: |
git clone https://github.com/sebastianbergmann/phpunit.git --branch=main --depth=1
cd phpunit
@@ -592,7 +592,7 @@ jobs:
exit 1
fi
- name: 'Symfony Preloading'
if: always() && !inputs.skip_symfony
if: !cancelled() && !inputs.skip_symfony
run: |
php /usr/bin/composer create-project symfony/symfony-demo symfony_demo --no-progress --ignore-platform-reqs
cd symfony_demo
@@ -600,7 +600,7 @@ jobs:
sed -i 's/PHP_SAPI/"cli-server"/g' var/cache/dev/App_KernelDevDebugContainer.preload.php
php -d opcache.preload=var/cache/dev/App_KernelDevDebugContainer.preload.php public/index.php
- name: Test Wordpress
if: always() && !inputs.skip_wordpress
if: !cancelled() && !inputs.skip_wordpress
run: |
git clone https://github.com/WordPress/wordpress-develop.git wordpress --depth=1
cd wordpress