8000 [7.0] Enable sigchild tests by nicolas-grekas · Pull Request #50463 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[7.0] Enable sigchild tests #50463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[7.0] Enable sigchild tests
  • Loading branch information
nicolas-grekas committed May 29, 2023
commit b648b3188f03f7b91782bf2fd5ebd4e03a32f834
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ jobs:
script -e -c './phpunit --group tty' /dev/null

- name: Run tests with SIGCHLD enabled PHP
if: "false && matrix.php == '8.2' && ! matrix.mode"
if: "matrix.php == '8.2' && ! matrix.mode"
run: |
mkdir build
cd build
wget -q https://github.com/symfony/binary-utils/releases/download/v0.1/php-8.2.6-pcntl-sigchild.tar.bz2
tar -xjf php-8.2.6-pcntl-sigchild.tar.bz2
wget -q https://github.com/symfony/binary-utils/releases/download/v0.1/php-8.2.0-pcntl-sigchild.tar.bz2
tar -xjf php-8.2.0-pcntl-sigchild.tar.bz2
cd ..

./build/php/bin/php ./phpunit --colors=always src/Symfony/Component/Process
0