Skip to content

Commit

Permalink
Merge pull request #4361 from greg0ire/test-all-extensions-with-php8
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire authored Oct 20, 2020
2 parents b407f8b + 94c02cc commit b85809c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
matrix:
php-version:
- "7.4"
- "8.0"

services:
oracle:
Expand Down Expand Up @@ -125,6 +126,7 @@ jobs:
matrix:
php-version:
- "7.4"
- "8.0"

services:
oracle:
Expand Down Expand Up @@ -315,7 +317,6 @@ jobs:
matrix:
php-version:
- "7.4"
- "8.0"
mysql-version:
- "5.7"
- "8.0"
Expand Down Expand Up @@ -344,6 +345,16 @@ jobs:
php-version: "7.4"
mysql-version: "8.0"
extension: "mysqli"
- php-version: "8.0"
mysql-version: "8.0"
extension: "mysqli"
custom-entrypoint: >-
--entrypoint sh mysql:8 -c "exec docker-entrypoint.sh mysqld --default-authentication-plugin=mysql_native_password"
- php-version: "8.0"
mysql-version: "8.0"
extension: "pdo_mysql"
custom-entrypoint: >-
--entrypoint sh mysql:8 -c "exec docker-entrypoint.sh mysqld --default-authentication-plugin=mysql_native_password"
services:
mysql:
Expand Down Expand Up @@ -405,6 +416,7 @@ jobs:
php-version:
- "7.3"
- "7.4"
- "8.0"
extension:
- "sqlsrv"
- "pdo_sqlsrv"
Expand Down Expand Up @@ -445,7 +457,7 @@ jobs:
coverage: "pcov"
ini-values: "zend.assertions=1"
tools: "pecl"
extensions: "${{ matrix.extension }}-5.7.0preview"
extensions: "${{ matrix.extension }}-5.9.0preview1"

- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class OCI8StatementTest extends DbalTestCase
* @param mixed[] $params
*
* @dataProvider executeDataProvider
* @requires PHP < 8.0
*/
public function testExecute(array $params): void
{
Expand Down

0 comments on commit b85809c

Please sign in to comment.