Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/files-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
# SPDX-License-Identifier: MIT
name: PHPUnit files_external generic
on:
pull_request:
schedule:
- cron: "5 2 * * *"
workflow_call:

permissions:
contents: read
Expand Down Expand Up @@ -48,9 +46,8 @@ jobs:

files-external-generic:
runs-on: ubuntu-latest
needs: changes

if: ${{ github.repository_owner != 'nextcloud-gmbh' && needs.changes.outputs.src != 'false' }}
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}

strategy:
fail-fast: false
Expand Down
22 changes: 2 additions & 20 deletions .github/workflows/integration-s3-primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@
# SPDX-License-Identifier: MIT
name: S3 primary storage integration tests
on:
pull_request:
workflow_call:

permissions:
contents: read

concurrency:
group: integration-s3-primary-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -47,9 +43,8 @@ jobs:

integration-s3-primary:
runs-on: ubuntu-latest
needs: changes

if: needs.changes.outputs.src != 'false' && github.repository_owner != 'nextcloud-gmbh'
if: github.repository_owner != 'nextcloud-gmbh'

strategy:
fail-fast: false
Expand Down Expand Up @@ -118,16 +113,3 @@ jobs:
cat data/nextcloud.log
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


s3-primary-integration-summary:
permissions:
contents: none
runs-on: ubuntu-latest-low
needs: [changes, integration-s3-primary]

if: always()

steps:
- name: Summary status
run: if ${{ needs.changes.outputs.src != 'false' && needs.integration-s3-primary.result != 'success' }}; then exit 1; fi
21 changes: 2 additions & 19 deletions .github/workflows/object-storage-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@
# SPDX-License-Identifier: MIT
name: Object storage azure
on:
pull_request:
schedule:
- cron: "15 2 * * *"
workflow_call:

permissions:
contents: read

concurrency:
group: object-storage-azure-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -48,9 +42,8 @@ jobs:

azure-primary-tests:
runs-on: ubuntu-latest
needs: changes

if: ${{ github.repository_owner != 'nextcloud-gmbh' && needs.changes.outputs.src != 'false' }}
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}

strategy:
fail-fast: false
Expand Down Expand Up @@ -124,13 +117,3 @@ jobs:
run: |
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

azure-primary-summary:
runs-on: ubuntu-latest-low
needs: [changes, azure-primary-tests]

if: always()

steps:
- name: Summary status
run: if ${{ needs.changes.outputs.src != 'false' && needs.azure-primary-tests.result != 'success' }}; then exit 1; fi
21 changes: 2 additions & 19 deletions .github/workflows/object-storage-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@
# SPDX-License-Identifier: MIT
name: Object storage S3
on:
pull_request:
schedule:
- cron: "15 2 * * *"
workflow_call:

permissions:
contents: read

concurrency:
group: object-storage-s3-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -48,9 +42,8 @@ jobs:

s3-primary-tests-minio:
runs-on: ubuntu-latest
needs: changes

if: ${{ github.repository_owner != 'nextcloud-gmbh' && needs.changes.outputs.src != 'false' }}
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}

strategy:
fail-fast: false
Expand Down Expand Up @@ -129,13 +122,3 @@ jobs:
run: |
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

s3-primary-summary:
runs-on: ubuntu-latest-low
needs: [changes,s3-primary-tests-minio]

if: always()

steps:
- name: Summary status
run: if ${{ needs.changes.outputs.src != 'false' && needs.s3-primary-tests-minio.result != 'success' }}; then exit 1; fi
21 changes: 2 additions & 19 deletions .github/workflows/object-storage-swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@
# SPDX-License-Identifier: MIT
name: Object storage Swift
on:
pull_request:
schedule:
- cron: "15 2 * * *"
workflow_call:

permissions:
contents: read

concurrency:
group: object-storage-swift-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -48,9 +42,8 @@ jobs:

swift-primary-tests:
runs-on: ubuntu-latest
needs: changes

if: ${{ github.repository_owner != 'nextcloud-gmbh' && needs.changes.outputs.src != 'false' }}
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}

strategy:
fail-fast: false
Expand Down Expand Up @@ -120,13 +113,3 @@ jobs:
run: |
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

swift-primary-summary:
runs-on: ubuntu-latest-low
needs: [changes,swift-primary-tests]

if: always()

steps:
- name: Summary status
run: if ${{ needs.changes.outputs.src != 'false' && needs.swift-primary-tests.result != 'success' }}; then exit 1; fi
23 changes: 1 addition & 22 deletions .github/workflows/phpunit-kvstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@
name: PHPUnit key-value store

on:
pull_request:
workflow_call:

permissions:
contents: read

concurrency:
group: phpunit-kvstore-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

env:
VALKEY_IMAGE: valkey/valkey:8

Expand All @@ -38,9 +34,6 @@ jobs:
phpunit-kvstore:
runs-on: ubuntu-latest

needs: changes
if: needs.changes.outputs.src != 'false'

strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -125,17 +118,3 @@ jobs:
if: always()
run: |
cat data/nextcloud.log

summary:
permissions:
contents: none
runs-on: ubuntu-latest-low
needs: [changes, phpunit-kvstore]

if: always()

name: phpunit-kvstore-summary

steps:
- name: Summary status
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-kvstore.result != 'success' }}; then exit 1; fi
11 changes: 1 addition & 10 deletions .github/workflows/phpunit-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@
name: PHPUnit MariaDB

on:
pull_request:
schedule:
- cron: "5 2 * * *"
workflow_call:

permissions:
contents: read

concurrency:
group: phpunit-mariadb-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -53,9 +47,6 @@ jobs:
phpunit-mariadb:
runs-on: ubuntu-latest

needs: changes
if: needs.changes.outputs.src != 'false'

strategy:
fail-fast: false
matrix:
Expand Down
25 changes: 1 addition & 24 deletions .github/workflows/phpunit-memcached.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@
name: PHPUnit memcached

on:
pull_request:
schedule:
- cron: "5 2 * * *"
workflow_call:

permissions:
contents: read

concurrency:
group: phpunit-memcached-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -50,9 +44,6 @@ jobs:
phpunit-memcached:
runs-on: ubuntu-latest

needs: changes
if: needs.changes.outputs.src != 'false'

strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -110,17 +101,3 @@ jobs:
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
25 changes: 1 addition & 24 deletions .github/workflows/phpunit-mysql-sharding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,11 @@
name: PHPUnit sharding

on:
pull_request:
schedule:
- cron: "5 2 * * *"
workflow_call:

permissions:
contents: read

concurrency:
group: phpunit-mysql-sharding-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
changes:
runs-on: ubuntu-latest-low
Expand Down Expand Up @@ -50,9 +44,6 @@ jobs:
phpunit-mysql:
runs-on: ubuntu-latest

needs: changes
if: needs.changes.outputs.src != 'false'

strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -171,17 +162,3 @@ jobs:
if: always()
run: |
cat data/nextcloud.log

summary:
permissions:
contents: none
runs-on: ubuntu-latest-low
needs: [changes, phpunit-mysql]

if: always()

name: phpunit-mysql-summary

steps:
- name: Summary status
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-mysql.result != 'success' }}; then exit 1; fi
Loading