Skip to content
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

Update PHP and database versions pinned for specific combinations in the matrix. #7950

Closed
Closed
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
26 changes: 13 additions & 13 deletions .github/workflows/phpunit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,40 +53,40 @@ jobs:
memcached: [ false ]

include:
# Include jobs for PHP 7.4 with memcached.
# Include jobs for PHP 8.2 with memcached.
- os: ubuntu-latest
php: '7.4'
php: '8.3'
db-type: 'mysql'
db-version: '5.7'
db-version: '8.4'
tests-domain: 'example.org'
multisite: false
memcached: true
- os: ubuntu-latest
php: '7.4'
php: '8.3'
db-type: 'mysql'
db-version: '5.7'
db-version: '8.4'
tests-domain: 'example.org'
multisite: true
memcached: true
# Include jobs with a port on the test domain for both single and multisite.
- os: ubuntu-latest
php: '7.4'
php: '8.4'
db-type: 'mysql'
db-version: '5.7'
db-version: '8.4'
tests-domain: 'example.org:8889'
multisite: false
memcached: false
- os: ubuntu-latest
php: '7.4'
php: '8.4'
db-type: 'mysql'
db-version: '5.7'
db-version: '8.4'
tests-domain: 'example.org:8889'
multisite: true
memcached: false
# Report test results to the Host Test Results.
- os: ubuntu-latest
db-type: 'mysql'
db-version: '8.0'
db-version: '8.4'
tests-domain: 'example.org'
multisite: false
memcached: false
Expand Down Expand Up @@ -131,15 +131,15 @@ jobs:
memcached: [ false ]

include:
# Include jobs for PHP 7.4 with memcached.
# Include jobs for PHP 8.3 with memcached.
- os: ubuntu-latest
php: '7.4'
php: '8.3'
db-type: 'mariadb'
db-version: '11.2'
multisite: false
memcached: true
- os: ubuntu-latest
php: '7.4'
php: '8.3'
db-type: 'mariadb'
db-version: '11.2'
multisite: true
Expand Down
Loading