Merge pull request #1508 from nextcloud/update-main-target-versions #2816
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: MIT | |
| name: PHPUnit | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - stable* | |
| env: | |
| APP_NAME: user_oidc | |
| jobs: | |
| integration: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-versions: ['8.2', '8.3', '8.4'] | |
| databases: ['mysql'] | |
| server-versions: ['stable31', 'stable32', 'stable33', 'stable34', 'stable35', 'master'] | |
| exclude: | |
| # Reduce matrix - test pgsql only on master and latest stable | |
| - databases: pgsql | |
| server-versions: stable31 | |
| - databases: pgsql | |
| server-versions: stable32 | |
| # Not compatible anymore | |
| - php-versions: 8.2 | |
| server-versions: stable35 | |
| - php-versions: 8.2 | |
| server-versions: master | |
| include: | |
| # PHP 8.5 with mysql on latest versions | |
| - php-versions: 8.5 | |
| databases: mysql | |
| server-versions: stable33 | |
| - php-versions: 8.5 | |
| databases: mysql | |
| server-versions: stable34 | |
| - php-versions: 8.5 | |
| databases: mysql | |
| server-versions: stable35 | |
| - php-versions: 8.5 | |
| databases: mysql | |
| server-versions: master | |
| name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }} | |
| services: | |
| postgres: | |
| image: postgres:16 | |
| ports: | |
| - 4445:5432/tcp | |
| env: | |
| POSTGRES_USER: root | |
| POSTGRES_PASSWORD: rootpassword | |
| POSTGRES_DB: nextcloud | |
| options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5 | |
| mysql: | |
| image: mariadb:11.4 | |
| ports: | |
| - 4444:3306/tcp | |
| env: | |
| MYSQL_ROOT_PASSWORD: rootpassword | |
| options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval 5s --health-timeout 2s --health-retries 5 | |
| steps: | |
| - name: Checkout server | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| repository: nextcloud/server | |
| ref: ${{ matrix.server-versions }} | |
| submodules: recursive | |
| - name: Checkout app | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| path: apps/${{ env.APP_NAME }} | |
| - name: Set up php ${{ matrix.php-versions }} | |
| uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: zip, gd, mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql | |
| coverage: none | |
| ini-values: memory_limit=512M | |
| - name: Cache composer dependencies | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 | |
| with: | |
| path: ~/.cache/composer | |
| key: php-${{ matrix.php-versions }}-composer-${{ hashFiles('apps/${{ env.APP_NAME }}/composer.lock') }} | |
| restore-keys: | | |
| php-${{ matrix.php-versions }}-composer- | |
| - name: Install composer dependencies | |
| working-directory: apps/${{ env.APP_NAME }} | |
| run: composer install | |
| - name: Set up Nextcloud | |
| run: | | |
| if [ "${{ matrix.databases }}" = "mysql" ]; then | |
| export DB_PORT=4444 | |
| elif [ "${{ matrix.databases }}" = "pgsql" ]; then | |
| export DB_PORT=4445 | |
| fi | |
| mkdir data | |
| ./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin | |
| ./occ app:enable --force ${{ env.APP_NAME }} | |
| php -S localhost:8080 & | |
| - name: PHPUnit | |
| working-directory: apps/${{ env.APP_NAME }} | |
| run: composer run test:unit |