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

Remove Oracle-11c service image versions in build workflow. #84

Merged
merged 7 commits into from
Aug 29, 2024
11 changes: 6 additions & 5 deletions .github/workflows/build-oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ concurrency:

jobs:
tests:
name: PHP ${{ matrix.php }}-oracle-${{ matrix.oracle }}
name: PHP ${{ matrix.php }}-oracle-${{ matrix.oracle.version }}

env:
EXTENSIONS: oci8, pdo, pdo_oci
Expand All @@ -43,13 +43,14 @@ jobs:
- 8.1

oracle:
- 11
- 18
- 21
- version: 18
image: gvenzl/oracle-xe:18
- version: 21
image: gvenzl/oracle-xe:21

services:
oci:
image: gvenzl/oracle-xe:${{ matrix.oracle }}
image: ${{ matrix.oracle.image }}
ports:
- 1521:1521
env:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Yii Core version 2 Change Log
- Bug #75: Refactor `prepareInsertValues()` method in `QueryBuilder::class` to accept `TableSchema` object (@terabytesoftw)
- Bug #77: Add support for test `Oracle` 18, 21 (@terabytesoftw)
- Bug #78: Fix test case for `getSchemaNames()` method in `SchemaTest::class` in `Oracle` (@terabytesoftw)
- Enh #83: Remove `Oracle-11c` service image versions in build workflow (@terabytesoftw)

Yii Framework 2 Change Log
==========================
Expand Down