php-actions / phpunit

Run PHPUnit tests in Github Actions.
108 stars 24 forks source link

8.3 building failed #62

Closed Buffele closed 7 months ago

Buffele commented 7 months ago

My yml is as follows:

      - name: Run Tests
        uses: php-actions/phpunit@master
        with:
          version: "11.0.4"
          php_version: "8.3"
          php_extensions: "gd mysqli sockets"
          bootstrap: "app/autoload.php"
          configuration: "tests/phpunit.xml"

Getting the following error since today:

Run php-actions/phpunit@master
  with:
    version: 11.0.4
    php_version: 8.3
    php_extensions: gd mysqli sockets
    bootstrap: app/autoload.php
    configuration: tests/phpunit.xml
    test_suffix: Test.php,.phpt
Run set -e
Building PHP 8.3 with extensions: gd mysqli sockets ...
Error: Process completed with exit code 1.

Previously everything was running fine and I didn't touch anything regarding github actions, the .yml file or phpunit configuration or tests.

Any ideas?

g105b commented 7 months ago

Hey, thanks for the report. I have noticed that this has also affected some of my repositories when using phpunit@master. I have reverted the Docker phpbuild image used to resolve this, and will figure out what the issue was when I get time.

For now, master should be working again for you. Please can you confirm that things are going well again?

Buffele commented 7 months ago

Thank you for the quick response.

I can confirm that everything is working well on my end again.