Skip to content
Merged
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
28 changes: 23 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,18 @@ jobs:
ports:
- 1518:1521
env:
ORACLE_PASSWORD: my_pass
ORACLE_PASSWORD: my_pass_18
options: >-
--health-cmd healthcheck.sh
--health-interval 10s
--health-timeout 5s
--health-retries 10
oracle-21:
image: gvenzl/oracle-xe:21-slim-faststart
ports:
- 1521:1521
env:
ORACLE_PASSWORD: my_pass_21
options: >-
--health-cmd healthcheck.sh
--health-interval 10s
Expand All @@ -44,7 +55,7 @@ jobs:
ports:
- 1523:1521
env:
ORACLE_PASSWORD: my_pass
ORACLE_PASSWORD: my_pass_23
options: >-
--health-cmd healthcheck.sh
--health-interval 10s
Expand Down Expand Up @@ -97,14 +108,21 @@ jobs:
run: php php-src/run-tests.php --show-diff --show-slow 1000 --set-timeout 120 tests
env:
PHP_OCI8_TEST_USER: system
PHP_OCI8_TEST_PASS: my_pass
PHP_OCI8_TEST_DB: 0.0.0.0:1518/FREEPDB1
PHP_OCI8_TEST_PASS: my_pass_18
PHP_OCI8_TEST_DB: 0.0.0.0:1518/XE
- name: Run tests /w Oracle 21
if: success() || failure()
run: php php-src/run-tests.php --show-diff --show-slow 1000 --set-timeout 120 tests
env:
PHP_OCI8_TEST_USER: system
PHP_OCI8_TEST_PASS: my_pass_21
PHP_OCI8_TEST_DB: 0.0.0.0:1521/XE
- name: Run tests /w Oracle 23
if: success() || failure()
run: php php-src/run-tests.php --show-diff --show-slow 1000 --set-timeout 120 tests
env:
PHP_OCI8_TEST_USER: system
PHP_OCI8_TEST_PASS: my_pass
PHP_OCI8_TEST_PASS: my_pass_23
PHP_OCI8_TEST_DB: 0.0.0.0:1523/FREEPDB1

windows-matrix:
Expand Down