build(deps): bump the github-actions group across 1 directory with 12 updates #1812
Workflow file for this run
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: 2023 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: MIT | |
| name: PHPUnit 32bits | |
| on: | |
| pull_request: | |
| paths: | |
| - "version.php" | |
| - ".github/workflows/phpunit-32bits.yml" | |
| - "tests/phpunit-autotest.xml" | |
| - "lib/private/Snowflake/*" | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "15 1 * * 1-6" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: phpunit-32bits-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| phpunit-32bits: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner != 'nextcloud-gmbh' }} | |
| container: shivammathur/node:latest-i386 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-versions: ["8.2", "8.3", "8.4"] | |
| steps: | |
| - name: Checkout server | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| with: | |
| persist-credentials: false | |
| submodules: true | |
| - name: Install tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y ffmpeg imagemagick libmagickcore-6.q16-3-extra | |
| - name: Set up php ${{ matrix.php-versions }} | |
| uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f #v2.35.5 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, imagick, intl, json, libxml, mbstring, openssl, pcntl, posix, redis, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite, apcu, ldap | |
| coverage: none | |
| ini-file: development | |
| ini-values: apc.enabled=on, apc.enable_cli=on, disable_functions= # https://github.com/shivammathur/setup-php/discussions/573 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up dependencies | |
| run: composer i | |
| - name: Set up Nextcloud | |
| env: | |
| DB_PORT: 4444 | |
| run: | | |
| mkdir data | |
| ./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=autotest --database-pass=rootpassword --admin-user admin --admin-pass admin | |
| php -f tests/enable_all.php | |
| - name: PHPUnit | |
| run: composer run test -- --exclude-group PRIMARY-azure --exclude-group PRIMARY-s3 --exclude-group PRIMARY-swift --exclude-group Memcached --exclude-group Redis --exclude-group RoutingWeirdness |