aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-07-18 09:09:16 +0200
committerJoas Schilling <coding@schilljs.com>2024-07-19 11:21:09 +0200
commit5c02303ce41ac7f13a1504bcc6e8c0e75f525f61 (patch)
tree502416561e38fdf07fe5841c37eeb8af14470958 /.github
parent64ca4b832dc6b7a574fd3301b1c0e022b192ea5d (diff)
downloadnextcloud-server-5c02303ce41ac7f13a1504bcc6e8c0e75f525f61.tar.gz
nextcloud-server-5c02303ce41ac7f13a1504bcc6e8c0e75f525f61.zip
ci(oracle): Test against Oracle 11, 18, 21 and 23
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit-oci.yml29
1 files changed, 15 insertions, 14 deletions
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index 041d2175271..ab91bd309bc 100644
--- a/.github/workflows/phpunit-oci.yml
+++ b/.github/workflows/phpunit-oci.yml
@@ -51,15 +51,20 @@ jobs:
runs-on: ubuntu-latest
needs: changes
- if: needs.changes.outputs.src != 'false' && ${{ github.repository_owner != 'nextcloud-gmbh' }}
+ if: ${{ needs.changes.outputs.src != 'false' && github.repository_owner != 'nextcloud-gmbh' }}
strategy:
matrix:
- oracle-versions: ['11']
- php-versions: ['8.1', '8.2', '8.3']
include:
- - php-versions: '8.3'
+ - oracle-versions: '11'
+ php-versions: '8.1'
+ - oracle-versions: '18'
+ php-versions: '8.1'
coverage: ${{ github.event_name != 'pull_request' }}
+ - oracle-versions: '21'
+ php-versions: '8.2'
+ - oracle-versions: '23'
+ php-versions: '8.3'
name: Oracle ${{ matrix.oracle-versions }} (PHP ${{ matrix.php-versions }}) - database tests
@@ -71,23 +76,21 @@ jobs:
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
oracle:
- image: ghcr.io/gvenzl/oracle-xe:${{ matrix.oracle-versions }}
+ image: ghcr.io/gvenzl/oracle-${{ matrix.oracle-versions < 23 && 'xe' || 'free' }}:${{ matrix.oracle-versions }}
# Provide passwords and other environment variables to container
env:
- ORACLE_RANDOM_PASSWORD: true
- APP_USER: oc_autotest
- APP_USER_PASSWORD: nextcloud
+ ORACLE_PASSWORD: oracle
# Forward Oracle port
ports:
- - 4444:1521/tcp
+ - 1521:1521
# Provide healthcheck script options for startup
options: >-
--health-cmd healthcheck.sh
- --health-interval 10s
- --health-timeout 5s
+ --health-interval 20s
+ --health-timeout 10s
--health-retries 10
steps:
@@ -111,13 +114,11 @@ jobs:
run: composer i
- name: Set up Nextcloud
- env:
- DB_PORT: 4444
run: |
mkdir data
cp tests/redis.config.php config/
cp tests/preseed-config.php config/config.php
- ./occ maintenance:install --verbose --database=oci --database-name=XE --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=oc_autotest --database-pass=nextcloud --admin-user admin --admin-pass admin
+ ./occ maintenance:install --verbose --database=oci --database-name=${{ matrix.oracle-versions < 23 && 'XE' || 'FREE' }} --database-host=127.0.0.1 --database-port=1521 --database-user=system --database-pass=oracle --admin-user admin --admin-pass admin
php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0
- name: PHPUnit