chore(tests): enable setup-php failure on deps

Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
pull/61140/head
Benjamin Gaussorgues 2 months ago committed by Côme Chilliet
parent c7a5ca60ec
commit fff30212a2
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
  1. 1
      .github/workflows/phpunit-mariadb.yml
  2. 1
      .github/workflows/phpunit-memcached.yml
  3. 5
      .github/workflows/phpunit-mysql-sharding.yml
  4. 1
      .github/workflows/phpunit-mysql.yml
  5. 5
      .github/workflows/phpunit-nodb.yml
  6. 8
      .github/workflows/phpunit-object-store-primary.yml
  7. 1
      .github/workflows/phpunit-oci.yml
  8. 1
      .github/workflows/phpunit-pgsql.yml
  9. 1
      .github/workflows/phpunit-sqlite.yml

@ -104,6 +104,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -88,6 +88,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -56,8 +56,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.2']
mysql-versions: ['8.4']
php-versions: ["8.2"]
mysql-versions: ["8.4"]
name: Sharding - MySQL ${{ matrix.mysql-versions }} (PHP ${{ matrix.php-versions }}) - database tests
@ -137,6 +137,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -104,6 +104,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -59,9 +59,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.3', '8.4', '8.5']
php-versions: ["8.3", "8.4", "8.5"]
include:
- php-versions: '8.2'
- php-versions: "8.2"
coverage: ${{ github.event_name != 'pull_request' }}
name: No DB unit tests (PHP ${{ matrix.php-versions }})
@ -92,6 +92,7 @@ jobs:
# Required for tests that use pcntl
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -49,8 +49,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.2']
key: ['s3', 's3-multibucket']
php-versions: ["8.2"]
key: ["s3", "s3-multibucket"]
name: php${{ matrix.php-versions }}-${{ matrix.key }}-minio
@ -84,6 +84,7 @@ jobs:
php-version: ${{ matrix.php-versions }}
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, redis, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Nextcloud
@ -113,10 +114,9 @@ jobs:
docker ps -a
docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
object-store-primary-summary:
runs-on: ubuntu-latest-low
needs: [changes,object-store-primary-tests-minio]
needs: [changes, object-store-primary-tests-minio]
if: always()

@ -111,6 +111,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -107,6 +107,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

@ -90,6 +90,7 @@ jobs:
ini-file: development
ini-values: disable_functions=""
env:
fail-fast: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up dependencies

Loading…
Cancel
Save