Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/phpunit-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2']
server-versions: ['master']
server-versions: ['master', 'stable27']
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why stable27 this is only for the master branch, stable27 should only be tested on its own branch.
(so backporting this to stable27 instead)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@susnux the original issue : #868 requested such?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that is about adding 8.2 also to the stable27 branch.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, what susnux says


services:
mysql:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit-oci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:

strategy:
matrix:
php-versions: ['8.0']
server-versions: ['master']
php-versions: ['8.0', '8.1', '8.2']
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should also not be changed, to keep the CI matrix small.

server-versions: ['master', 'stable27']

services:
oracle:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit-pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:

strategy:
matrix:
php-versions: ['8.0']
server-versions: ['master']
php-versions: ['8.0', '8.1', '8.2']
server-versions: ['master', 'stable27']

services:
postgres:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:

strategy:
matrix:
php-versions: ['8.0']
server-versions: ['master']
php-versions: ['8.0', '8.1', '8.2']
server-versions: ['master', 'stable27']

steps:
- name: Set app env
Expand Down