mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
6edca57df4
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [shivammathur/setup-php](https://github.com/shivammathur/setup-php) | `2.31.0` | `2.31.1` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.0.2` | `4.0.3` | | [cypress-io/github-action](https://github.com/cypress-io/github-action) | `6.7.1` | `6.7.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.3` | `4.3.4` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4.1.1` | `4.5.0` | | [mdecoleman/pr-branch-name](https://github.com/mdecoleman/pr-branch-name) | `2.0.0` | `3.0.0` | Updates `shivammathur/setup-php` from 2.31.0 to 2.31.1 - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](2e947f1f69...c541c155ee
) Updates `actions/setup-node` from 4.0.2 to 4.0.3 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](60edb5dd54...1e60f620b9
) Updates `cypress-io/github-action` from 6.7.1 to 6.7.2 - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](8d3918616d...df7484c5ba
) Updates `actions/upload-artifact` from 4.3.3 to 4.3.4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](65462800fd...0b2256b8c0
) Updates `codecov/codecov-action` from 4.1.1 to 4.5.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Commits](https://github.com/codecov/codecov-action/compare/v4.1.1...v4.5.0) Updates `mdecoleman/pr-branch-name` from 2.0.0 to 3.0.0 - [Release notes](https://github.com/mdecoleman/pr-branch-name/releases) - [Commits](bab4c71506...55795d86b4
) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: cypress-io/github-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: mdecoleman/pr-branch-name dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
66 lines
2.1 KiB
YAML
66 lines
2.1 KiB
YAML
# 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'
|
|
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:
|
|
matrix:
|
|
php-versions: ['8.1','8.3']
|
|
|
|
steps:
|
|
- name: Checkout server
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
|
with:
|
|
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@c541c155eee45413f5b09a52248675b1a2575231 #v2.31.1
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
extensions: ctype, curl, dom, fileinfo, gd, imagick, intl, json, mbstring, openssl, pdo_sqlite, posix, sqlite, xml, zip, apcu
|
|
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 Nextcloud
|
|
env:
|
|
DB_PORT: 4444
|
|
run: |
|
|
composer install
|
|
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 index.php
|
|
|
|
- name: PHPUnit
|
|
run: composer run test -- --exclude-group PRIMARY-azure,PRIMARY-s3,PRIMARY-swift,Memcached,Redis,RoutingWeirdness
|