-
Notifications
You must be signed in to change notification settings - Fork 11
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
EWPP-1846: Upgrade task-runner to PHP 8. #160
Conversation
aded244
to
f329617
Compare
a932bac
to
c9a5c09
Compare
tests/AbstractTaskTest.php
Outdated
@@ -29,7 +29,7 @@ abstract class AbstractTaskTest extends AbstractTest implements ContainerAwareIn | |||
/** | |||
* Setup hook. | |||
*/ | |||
public function setup() | |||
public function setUp(): void |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public function setUp(): void | |
protected function setUp(): void |
image: fpfis/httpd-php-dev:7.3 | ||
image: fpfis/httpd-php-dev:8.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we using the fpfis/httpd-php
image? Task Runner is only dealing with PHP on CLI level, it doesn't need a webserver (Apache, Nginx, etc). Using an image such as php:8.0-cli
would allow us to be more generic and not coupled to EC. Remember, Task Runner is supposed to be an opensource tool.
Also, this would allow to test also with PHP 8.1 as FPFIS image for 8.1 is not yet out.
24c14bd
to
809a93b
Compare
The base branch was changed.
No description provided.