Skip to content

Commit

Permalink
Run CI with PHP 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
villfa authored Aug 24, 2023
1 parent 42a0022 commit 18b6c33
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
with:
coverage: "none"
ini-values: "error_reporting=-1, display_errors=On, display_startup_errors=On, zend.assertions=1"
php-version: "8.0"
php-version: "8.1"
tools: composer:v2

- uses: "ramsey/composer-install@v2"
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
with:
coverage: "pcov"
ini-values: "error_reporting=-1, display_errors=On, display_startup_errors=On, zend.assertions=1"
php-version: "8.0"
php-version: "8.1"
tools: composer:v2

- uses: "ramsey/composer-install@v2"
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
with:
coverage: "none"
ini-values: "error_reporting=-1, display_errors=On, display_startup_errors=On, zend.assertions=1"
php-version: "8.0"
php-version: "8.1"
tools: composer:v2, composer-normalize, composer-require-checker

- name: "Validate composer.json"
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
with:
coverage: "none"
ini-values: "error_reporting=-1, display_errors=On, display_startup_errors=On, zend.assertions=1"
php-version: "8.0"
php-version: "8.1"
tools: composer:v2

- name: Get composer cache directory
Expand Down
4 changes: 2 additions & 2 deletions tests/docker/fossil/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM php:8.0-cli
FROM php:8.1-cli

# Requirements for running phpunit
RUN apt-get update && apt-get install -y git zip
RUN pecl install xdebug-3.0.2 && docker-php-ext-enable xdebug
RUN pecl install xdebug && docker-php-ext-enable xdebug
ENV XDEBUG_MODE=coverage
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

Expand Down
4 changes: 2 additions & 2 deletions tests/docker/mercurial/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM php:8.0-cli
FROM php:8.1-cli

# Requirements for running phpunit
RUN apt-get update && apt-get install -y git zip
RUN pecl install xdebug-3.0.2 && docker-php-ext-enable xdebug
RUN pecl install xdebug && docker-php-ext-enable xdebug
ENV XDEBUG_MODE=coverage
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

Expand Down
4 changes: 2 additions & 2 deletions tests/docker/subversion/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM php:8.0-cli
FROM php:8.1-cli

# Requirements for running phpunit
RUN apt-get update && apt-get install -y git zip
RUN pecl install xdebug-3.0.2 && docker-php-ext-enable xdebug
RUN pecl install xdebug && docker-php-ext-enable xdebug
ENV XDEBUG_MODE=coverage
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

Expand Down

0 comments on commit 18b6c33

Please sign in to comment.