mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Save some CI time
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
bcc9ee4011
commit
333d6bcc45
12 changed files with 31 additions and 4 deletions
2
.github/workflows/cypress.yml
vendored
2
.github/workflows/cypress.yml
vendored
|
|
@ -16,6 +16,8 @@ jobs:
|
|||
init:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
2
.github/workflows/ftp.yml
vendored
2
.github/workflows/ftp.yml
vendored
|
|
@ -17,6 +17,8 @@ jobs:
|
|||
ftp-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
|
|
|
|||
3
.github/workflows/node-tests.yml
vendored
3
.github/workflows/node-tests.yml
vendored
|
|
@ -10,6 +10,9 @@ on:
|
|||
jobs:
|
||||
versions:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
outputs:
|
||||
nodeVersion: ${{ steps.versions.outputs.nodeVersion }}
|
||||
npmVersion: ${{ steps.versions.outputs.npmVersion }}
|
||||
|
|
|
|||
2
.github/workflows/oci.yml
vendored
2
.github/workflows/oci.yml
vendored
|
|
@ -13,6 +13,8 @@ jobs:
|
|||
phpunit-oci:
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['8.0', '8.1', '8.2']
|
||||
|
|
|
|||
2
.github/workflows/performance.yml
vendored
2
.github/workflows/performance.yml
vendored
|
|
@ -6,6 +6,8 @@ jobs:
|
|||
performance-testing:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
|
|||
3
.github/workflows/phpunit-32bits.yml
vendored
3
.github/workflows/phpunit-32bits.yml
vendored
|
|
@ -15,6 +15,9 @@ concurrency:
|
|||
jobs:
|
||||
phpunit-32bits:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
container: shivammathur/node:latest-i386
|
||||
|
||||
strategy:
|
||||
|
|
|
|||
4
.github/workflows/s3-external.yml
vendored
4
.github/workflows/s3-external.yml
vendored
|
|
@ -17,6 +17,8 @@ jobs:
|
|||
s3-external-tests-minio:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
|
|
@ -68,6 +70,8 @@ jobs:
|
|||
s3-external-tests-localstack:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
|
|
|
|||
2
.github/workflows/s3-primary.yml
vendored
2
.github/workflows/s3-primary.yml
vendored
|
|
@ -10,6 +10,8 @@ jobs:
|
|||
s3-primary-tests-minio:
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
|
|
|
|||
2
.github/workflows/smb-kerberos.yml
vendored
2
.github/workflows/smb-kerberos.yml
vendored
|
|
@ -16,6 +16,8 @@ jobs:
|
|||
smb-kerberos-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
name: smb-kerberos-sso
|
||||
|
||||
steps:
|
||||
|
|
|
|||
9
.github/workflows/stale.yml
vendored
9
.github/workflows/stale.yml
vendored
|
|
@ -7,12 +7,13 @@ on:
|
|||
|
||||
jobs:
|
||||
stale:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
|
||||
|
||||
steps:
|
||||
- uses: actions/stale@v5
|
||||
with:
|
||||
|
|
@ -29,4 +30,4 @@ jobs:
|
|||
days-before-stale: 30
|
||||
days-before-close: 14
|
||||
# debug-only: true
|
||||
|
||||
|
||||
|
|
|
|||
2
.github/workflows/static-code-analysis.yml
vendored
2
.github/workflows/static-code-analysis.yml
vendored
|
|
@ -11,6 +11,8 @@ jobs:
|
|||
static-code-analysis:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
2
.github/workflows/update-psalm-baseline.yml
vendored
2
.github/workflows/update-psalm-baseline.yml
vendored
|
|
@ -9,6 +9,8 @@ jobs:
|
|||
update-psalm-baseline:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
|
|||
Loading…
Reference in a new issue