mirror of
https://github.com/nextcloud/server.git
synced 2026-05-13 00:51:10 -04:00
Save some CI time
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
d2e444cacd
commit
cc31b3fa07
9 changed files with 27 additions and 4 deletions
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
|
|
@ -11,6 +11,8 @@ jobs:
|
|||
phpunit-oci:
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
|
|||
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
|
||||
|
|
@ -66,6 +68,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
|
|
@ -14,6 +14,8 @@ jobs:
|
|||
smb-kerberos-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
|
|||
8
.github/workflows/stale.yml
vendored
8
.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:
|
||||
|
|
@ -28,4 +29,3 @@ jobs:
|
|||
days-before-stale: 30
|
||||
days-before-close: 14
|
||||
debug-only: true
|
||||
|
||||
|
|
|
|||
6
.github/workflows/static-code-analysis.yml
vendored
6
.github/workflows/static-code-analysis.yml
vendored
|
|
@ -5,6 +5,9 @@ on: [pull_request]
|
|||
jobs:
|
||||
static-code-analysis:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout submodules
|
||||
|
|
@ -31,6 +34,9 @@ jobs:
|
|||
|
||||
static-code-analysis-ocp:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout submodules
|
||||
|
|
|
|||
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' }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in a new issue