# This workflow is provided via the organization template repository # # https://github.com/nextcloud/.github # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # # SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors # SPDX-License-Identifier: MIT name: PHPUnit memcached on: pull_request: schedule: - cron: "5 2 * * *" permissions: contents: read concurrency: group: phpunit-memcached-${{ github.head_ref || github.run_id }} cancel-in-progress: true jobs: changes: runs-on: ubuntu-latest-low outputs: src: ${{ steps.changes.outputs.src}} steps: - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 id: changes continue-on-error: true with: filters: | src: - '.github/workflows/**' - '3rdparty/**' - '**/appinfo/**' - '**/lib/**' - '**/templates/**' - '**/tests/**' - 'vendor/**' - 'vendor-bin/**' - '.php-cs-fixer.dist.php' - 'composer.json' - 'composer.lock' - '**.php' phpunit-memcached: runs-on: ubuntu-latest needs: changes if: needs.changes.outputs.src != 'false' strategy: fail-fast: false matrix: php-versions: ["8.3", "8.5"] name: Memcached (PHP ${{ matrix.php-versions }}) services: memcached: image: ghcr.io/nextcloud/continuous-integration-memcached:latest # zizmor: ignore[unpinned-images] ports: - 11211:11211/tcp steps: - name: Checkout server uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false submodules: true - name: Set up php ${{ matrix.php-versions }} uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc #v2.37.1 timeout-minutes: 5 with: php-version: ${{ matrix.php-versions }} # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, memcached, openssl, pcntl, pdo_sqlite, posix, session, simplexml, sqlite, xmlreader, xmlwriter, zip, zlib coverage: none ini-file: development ini-values: disable_functions="" env: fail-fast: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Set up dependencies run: composer i - name: Set up Nextcloud run: | mkdir data cp tests/memcached.config.php config/ cp tests/preseed-config.php config/config.php ./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin php -f tests/enable_all.php - name: PHPUnit memcached tests run: composer run test -- --group Memcached --log-junit junit.xml - name: Print logs if: always() run: | cat data/nextcloud.log summary: permissions: contents: none runs-on: ubuntu-latest-low needs: [changes, phpunit-memcached] if: always() name: phpunit-memcached-summary steps: - name: Summary status run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-memcached.result != 'success' }}; then exit 1; fi