summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-06-01 11:59:44 +0200
committerGrigorii K. Shartsev <me@shgk.me>2023-06-09 15:48:11 +0200
commitd82da24f6da4c1a994ad8b19aba6b748951806ad (patch)
tree9d65b9f75cb32cd9ebda41b12828bcab5befa1e0 /.github
parentf7fca2f6d1cf469c219b2060f535b40fc4c1dcd2 (diff)
fix(CI): Try 3rdparty oracle images
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit-oci.yml17
1 files changed, 16 insertions, 1 deletions
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index 279c50777..81e8dfa51 100644
--- a/.github/workflows/phpunit-oci.yml
+++ b/.github/workflows/phpunit-oci.yml
@@ -43,10 +43,25 @@ jobs:
services:
oracle:
- image: ghcr.io/nextcloud/continuous-integration-oracle-11g:latest
+ image: ghcr.io/gvenzl/oracle-xe:11
+
+ # Provide passwords and other environment variables to container
+ env:
+ ORACLE_RANDOM_PASSWORD: true
+ APP_USER: autotest
+ APP_USER_PASSWORD: owncloud
+
+ # Forward Oracle port
ports:
- 1521:1521/tcp
+ # Provide healthcheck script options for startup
+ options: >-
+ --health-cmd healthcheck.sh
+ --health-interval 10s
+ --health-timeout 5s
+ --health-retries 10
+
steps:
- name: Set app env
run: |